New Setup 📦
This commit is contained in:
parent
d16174b447
commit
415dbd08a1
10194 changed files with 1368647 additions and 4 deletions
50
home/.xinitrc
Normal file
50
home/.xinitrc
Normal file
|
@ -0,0 +1,50 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Kill compositor :
|
||||
killall -9 xcompmgr dunst picom dwmbar
|
||||
|
||||
# Num Lock :
|
||||
numlockx &
|
||||
|
||||
# Keybindings :
|
||||
sxhkd &
|
||||
|
||||
# Applets :
|
||||
#nm-applet &
|
||||
#blueman-applet &
|
||||
#volumeicon &
|
||||
|
||||
# Polkit :
|
||||
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
||||
|
||||
# Screen With Xrandr:
|
||||
xrandr --output eDP-1 --mode 1366x768 --pos 0x132 --rotate normal --output HDMI-1 --primary --mode 1600x900 --pos 1366x0 --rotate normal &
|
||||
|
||||
# Keybord auto-repeat :
|
||||
xset r rate 300 50 &
|
||||
|
||||
# Keybord Layout :
|
||||
#setxkbmap -layout fr,dz -variant ,ar -option grp:alt_shift_toggle &
|
||||
|
||||
# Wallpaper :
|
||||
nitrogen --restore &
|
||||
|
||||
# Status :
|
||||
~/.local/bin/statusbar/dwmbar &
|
||||
#~/.local/bin/statusbar/dwmbar-emoji &
|
||||
#~/.local/bin/statusbar/dwmbar-colored &
|
||||
#~/.local/bin/statusbar/simplebar &
|
||||
#dwmblocks
|
||||
|
||||
|
||||
# Compositor && Notification :
|
||||
autostart="picom dunst"
|
||||
for program in $autostart; do
|
||||
pidof -s "$program" || setsid -f "$program"
|
||||
done >/dev/null 2>&1
|
||||
|
||||
# Window Manager
|
||||
exec dwm
|
||||
|
||||
# Artix :
|
||||
#exec dbus-launch --exit-with-session --sh-syntax dwm
|
Loading…
Add table
Add a link
Reference in a new issue