summaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-08-27 22:23:44 +0100
committerself <george@gabbott.dev>2022-08-27 22:23:44 +0100
commit802320cb9c6de6da914e05f4cabcd2a5ace879ed (patch)
tree283458869c3a65cfd6a1ec9ca02a0922cff284b7 /.xinitrc
parent2715ab8364ce523aa0713ce4be6e39788d07e4eb (diff)
changed: alacritty theme, mn path, powerline absolutepath
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