1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
WM=dwm
xrdb -merge $XDG_CONFIG_HOME/X11/Xresources
__type $WM || (echo "$WM not found" && exit 1)
__type slstatus && exec slstatus &
exec $WM
Cross platform dotfiles for linux, mac and windows
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
WM=dwm
xrdb -merge $XDG_CONFIG_HOME/X11/Xresources
__type $WM || (echo "$WM not found" && exit 1)
__type slstatus && exec slstatus &
exec $WM