mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
40 lines
1.3 KiB
Bash
Executable File
40 lines
1.3 KiB
Bash
Executable File
#!/bin/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 ~/config/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.
|
|
|
|
. ~/.xprofile
|
|
|
|
# Your default LARBS WM is determined in your `~/.profile` on login. Here we
|
|
# run the proper command to run when the graphical environment starts.
|
|
# In order to temporarily overwrite the default WM, you can run something
|
|
# like `xinit ~/.xinitrc bspwm`
|
|
|
|
|
|
case ${1:-${WM:-dwm}} in
|
|
a*) exec awesome ;;
|
|
bs*) exec bspwm ;;
|
|
bu*) exec budgie-desktop ;;
|
|
c*) exec cinnamon-session ;;
|
|
dd*) exec startdde ;;
|
|
dwm) ssh-agent dwm ;;
|
|
e*) exec enlightenment_start ;;
|
|
f*) exec startfluxbox ;;
|
|
g*) exec gnome-session ;;
|
|
i3*) export STATUSBAR="i3blocks" && ssh-agent i3 --shmlog-size 0 ;;
|
|
j*) exec jwm ;;
|
|
lxd*) exec startlxde ;;
|
|
lxq*) exec lxqt-session ;;
|
|
m*) exec mate-session ;;
|
|
o*) exec openbox-session ;;
|
|
x*) exec xfce4-session ;;
|
|
k* | plasma-x*) exec startplasma-x11 ;;
|
|
plasma-w*) exec startplasma-wayland ;;
|
|
*) exec ${1:-$WM} ;;
|
|
esac
|