2018-11-10 22:27:56 -06:00
|
|
|
#!/bin/sh
|
2019-03-02 21:32:13 -06:00
|
|
|
|
2019-09-15 01:20:26 -05:00
|
|
|
# sourced at boot by ~/.xinitrc and most display managers
|
2018-10-29 03:36:27 -05:00
|
|
|
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# xdg standard configuration location (needed by some applications)
|
2020-03-03 01:16:51 -06:00
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# add ~/.local/bin to the PATH (application executables)
|
2019-12-23 01:56:46 -06:00
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
2018-02-09 22:35:27 -06:00
|
|
|
|
2021-05-04 22:21:22 -05:00
|
|
|
# start the compositor (transparency, fade, shadows, blur, etc.)
|
2019-11-20 00:38:42 -06:00
|
|
|
picom -b &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# start the network tray application
|
2019-10-03 02:59:49 -05:00
|
|
|
nm-applet &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# start the volume tray application
|
2020-03-03 01:16:51 -06:00
|
|
|
volumeicon &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# restore the last wallpaper applied with nitrogen
|
2020-03-03 01:16:51 -06:00
|
|
|
nitrogen --restore &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# start xfce power manager
|
2020-03-03 01:16:51 -06:00
|
|
|
xfce4-power-manager &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# start the gnome polkit agent
|
2018-10-29 03:36:27 -05:00
|
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# set super key alone to emulate alt+F1
|
2018-08-29 20:59:42 -05:00
|
|
|
ksuperkey -e 'Super_L=Alt_L|F1' &
|
|
|
|
ksuperkey -e 'Super_R=Alt_L|F1' &
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# set display timeout, sleep, and power off times
|
2019-03-02 21:32:13 -06:00
|
|
|
xset dpms 600 900 1200
|
2021-05-04 22:21:22 -05:00
|
|
|
|
|
|
|
# set keyboard repeat rate
|
2018-08-29 20:59:42 -05:00
|
|
|
xset r rate 350 60
|