diff options
Diffstat (limited to '.xinitrc')
-rw-r--r-- | .xinitrc | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -7,12 +7,12 @@ export SHELL=/bin/zsh # Set shell to zsh # wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work. # Launch the Window Manager with a Parameter -session=${1:-ferrwm} +session=${1:-wmdwm} run_dwm() { # Run all applications that go hand in hand w/ dwm - while true + while true do dwm # Begin dwm wrapper done @@ -23,9 +23,14 @@ run_ferrwm() { RUST_LOG=trace && ferrwm } +run_spectrwm() { + spectrwm +} + case $session in - ferrwm ) run_ferrwm ;; - dwm ) run_dwm ;; + wmferrwm ) run_ferrwm ;; + wmdwm ) run_dwm ;; + wmspectrwm ) run_spectrwm ;; # No known session, try to run it as command esac |