2020-04-04 11:46:28 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
xrandr --auto
|
2023-01-03 02:27:32 +01:00
|
|
|
|
|
|
|
[ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile" # global autostart
|
|
|
|
[ -f "$HOME/.config/xorg/xlocal" ] && . "$HOME/.config/xorg/xlocal" # local autostart
|
|
|
|
[ -f "$HOME/.config/xorg/xdefaults" ] && xrdb -merge "$HOME/.config/xorg/xdefaults" # global resources
|
|
|
|
[ -f "$HOME/.config/xorg/xpcspec" ] && xrdb -merge "$HOME/.config/xorg/xpcspec" # local resources
|
2020-04-04 11:46:28 +02:00
|
|
|
|
2024-03-17 22:52:40 +01:00
|
|
|
background_set
|
2023-10-16 18:40:25 +02:00
|
|
|
|
2023-11-03 17:11:46 +01:00
|
|
|
csum=""
|
|
|
|
new_csum=$(sha1sum $(which dwm))
|
2023-12-11 01:24:16 +01:00
|
|
|
|
|
|
|
exec dwm
|