kwin-session (raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#!/bin/sh # give kwin time to start sleep 1 # lxappearance is the only way to set the cursor properly # change its class to keep it invisible with kwin rules (lxappearance --class cursorhack & sleep 2; killall lxappearance) & # low-level config xset -b & xset +fp /home/nilix/.local/share/fonts xset fp rehash redshift -x; redshift -O 6000K & xbacklight -set 50 & xbindkeys -f ~/.xbindkeysrc.kwin # services pulseaudio --start --exit-idle-time=-1 & hamster-service & udiskie -AnT -f pcmanfm-qt & # desktop environment tint2 & xfdesktop --sm-client-disable -D |