al-skel/base/.xprofile

39 lines
895 B
Plaintext
Raw Normal View History

#!/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
2021-05-04 22:21:22 -05:00
# xdg standard configuration location (needed by some applications)
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"
2021-05-04 22:21:22 -05:00
# start the compositor (transparency, fade, shadows, blur, etc.)
picom -b &
2021-05-04 22:21:22 -05:00
# start the network tray application
nm-applet &
2021-05-04 22:21:22 -05:00
# start the volume tray application
volumeicon &
2021-05-04 22:21:22 -05:00
# restore the last wallpaper applied with nitrogen
nitrogen --restore &
2021-05-04 22:21:22 -05:00
# start xfce power manager
xfce4-power-manager &
2021-05-04 22:21:22 -05:00
# start the gnome polkit agent
/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