summaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
Diffstat (limited to '.xinitrc')
-rw-r--r--.xinitrc13
1 files changed, 9 insertions, 4 deletions
diff --git a/.xinitrc b/.xinitrc
index 1f2db64..2324c05 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -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