diff options
author | self <george@gabbott.dev> | 2022-07-12 16:55:01 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-07-12 16:55:01 +0100 |
commit | f0be4e3b5fa02798534e9e86bcb70ad198a0200f (patch) | |
tree | 83298c31acbe1eb590c0d52d257a8728d5f8649c /.xinitrc | |
parent | ba46e74d4e1f5d8822e97c5b0b52a15f55ad1ef2 (diff) |
changes in .zshenv for cargo install
Diffstat (limited to '.xinitrc')
-rw-r--r-- | .xinitrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |