diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-11-26 17:50:41 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-11-26 17:50:41 -0500 |
| commit | e867fcfae509aab72e0efd6a2ca2c251c684154e (patch) | |
| tree | fc754956ad55d5d068d48742fa5db7a842e970a5 /.xinitrc | |
| parent | 3852e05575b95abb739464ee578e313cd839f525 (diff) | |
| download | eibhear-e867fcfae509aab72e0efd6a2ca2c251c684154e.tar.gz eibhear-e867fcfae509aab72e0efd6a2ca2c251c684154e.tar.zst eibhear-e867fcfae509aab72e0efd6a2ca2c251c684154e.zip | |
fix for dms
Diffstat (limited to '.xinitrc')
| -rw-r--r-- | .xinitrc | 46 |
1 files changed, 10 insertions, 36 deletions
@@ -2,41 +2,6 @@ # xinitrc runs automatically when you run startx. -guesswm() { - # Here, LARBS decides whether to boot dwm or i3. It will boot what is manually - # set in ~/.local/share/larbs/wm, otherwise it will test to see if dwm is - # installed, in which case it will load dwm. It will assume i3 otherwise. - - LARBSWM="$(cat ~/.local/share/larbs/wm 2>/dev/null)" || - { LARBSWM="$(type dwm >/dev/null 2>&1)" && LARBSWM="dwm" ;} || - { LARBSWM="$(type i3 >/dev/null 2>&1)" && LARBSWM="i3" ;} - - # To be clear, you can run: - # echo dwm > ~/.local/share/larbs/wm - # to set dwm as your default LARBS WM (or echo i3 for i3). - - # Here we start the window manager, whichever it's supposed to be. - # Note that we set the different status bar commands here too. - - case "$LARBSWM" in - dwm) - export FILE="lf" - export STATUSBAR="dwmblocks" - startlarbs() { # The loop is just to enable dwm's "restart" feature (mod+F2). - while :; do - ssh-agent dwm || break - done ;} - ;; - i3) - export FILE="ranger" - export STATUSBAR="i3blocks" - startlarbs() { exec i3 ;} - ;; - *) echo "No valid LARBS window manager detected." ;; - esac ;} - -guesswm - # There are some small but important commands that need to be run when we start # the graphical environment. I keep those commands in ~/.xprofile because that # file is run automatically if someone uses a display manager (login screen) @@ -45,4 +10,13 @@ guesswm [ -f ~/.xprofile ] && . ~/.xprofile -startlarbs +# Your default LARBS WM is determined in your `~/.profile` on login. Here we +# run the proper command to run when the graphical environment starts. + +case "$LARBSWM" in + dwm) while :; do + ssh-agent dwm || break + done ;; + i3) exec i3 ;; + *) echo "No valid LARBS window manager detected." ;; +esac |
