big xinit fix
This commit is contained in:
parent
09632e19ce
commit
0acdb5b950
1 changed files with 25 additions and 15 deletions
40
.xinitrc
40
.xinitrc
|
@ -1,16 +1,8 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# xinitrc runs automatically when you run startx.
|
||||
|
||||
# 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)
|
||||
# and so they are needed there. To prevent doubling up commands, I source them
|
||||
# here with the line below.
|
||||
|
||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||
|
||||
startlarbs() {
|
||||
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.
|
||||
|
@ -30,17 +22,35 @@ startlarbs() {
|
|||
dwm)
|
||||
export FILE="lf"
|
||||
export STATUSBAR="dwmblocks"
|
||||
# The loop is just to enable dwm's "restart" feature (mod+F2).
|
||||
while :; do
|
||||
ssh-agent dwm || break
|
||||
done
|
||||
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"
|
||||
exec i3
|
||||
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)
|
||||
# and so they are needed there. To prevent doubling up commands, I source them
|
||||
# here with the line below.
|
||||
|
||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||
|
||||
# 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)
|
||||
# and so they are needed there. To prevent doubling up commands, I source them
|
||||
# here with the line below.
|
||||
|
||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||
|
||||
startlarbs
|
||||
|
|
Loading…
Reference in a new issue