mirror of
https://notabug.org/Sages-of-Gensokyo/gensokyo_kappa-overlay
synced 2025-01-19 06:51:13 +01:00
14 lines
237 B
Bash
14 lines
237 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# try hard to respect Gentoo's wm choice
|
||
|
. /etc/profile
|
||
|
[ -f /etc/rc.conf ] && . /etc/rc.conf
|
||
|
export XSESSION
|
||
|
|
||
|
USERINITRC="$HOME/.xinitrc"
|
||
|
if [ -f "$USERINITRC" ]; then
|
||
|
. "$USERINITRC"
|
||
|
else
|
||
|
. /etc/X11/xinit/xinitrc
|
||
|
fi
|