20 lines
442 B
Bash
20 lines
442 B
Bash
#!/bin/sh
|
|
|
|
# sourced at boot by ~/.xinitrc and most display managers
|
|
|
|
XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_CONFIG_HOME
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
picom -b &
|
|
nitrogen --restore &
|
|
volumeicon &
|
|
nm-applet &
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
gnome-keyring-daemon --start --components=pkcs11 &
|
|
ksuperkey -e 'Super_L=Alt_L|F1' &
|
|
ksuperkey -e 'Super_R=Alt_L|F1' &
|
|
xset dpms 600 900 1200
|
|
xset r rate 350 60
|