diff options
author | self <george@gabbott.dev> | 2022-08-27 22:23:44 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-08-27 22:23:44 +0100 |
commit | 802320cb9c6de6da914e05f4cabcd2a5ace879ed (patch) | |
tree | 283458869c3a65cfd6a1ec9ca02a0922cff284b7 /.xinitrc | |
parent | 2715ab8364ce523aa0713ce4be6e39788d07e4eb (diff) |
changed: alacritty theme, mn path, powerline absolutepath
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 |