summaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-07-12 16:55:01 +0100
committerself <george@gabbott.dev>2022-07-12 16:55:01 +0100
commitf0be4e3b5fa02798534e9e86bcb70ad198a0200f (patch)
tree83298c31acbe1eb590c0d52d257a8728d5f8649c /.xinitrc
parentba46e74d4e1f5d8822e97c5b0b52a15f55ad1ef2 (diff)
changes in .zshenv for cargo install
Diffstat (limited to '.xinitrc')
-rw-r--r--.xinitrc8
1 files changed, 6 insertions, 2 deletions
diff --git a/.xinitrc b/.xinitrc
index 53a6740..1f2db64 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -7,7 +7,7 @@ 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:-dwm}
+session=${1:-ferrwm}
run_dwm() {
# Run all applications that go hand in hand w/ dwm
@@ -19,8 +19,12 @@ run_dwm() {
}
+run_ferrwm() {
+ RUST_LOG=trace && ferrwm
+}
+
case $session in
- i3|i3wm ) exec i3;;
+ ferrwm ) run_ferrwm ;;
dwm ) run_dwm ;;
# No known session, try to run it as command
esac