-
Notifications
You must be signed in to change notification settings - Fork 1
/
.xprofile
48 lines (32 loc) · 1.09 KB
/
.xprofile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
# sourced at boot by ~/.xinitrc and most display managers
# xdg standard configuration location (needed by some applications)
export XDG_CONFIG_HOME="$HOME/.config"
# add ~/.local/bin to the PATH (application executables)
export PATH="$HOME/.local/bin:$PATH"
# start the compositor (transparency, fade, shadows, blur, etc.)
picom --experimental-backends -b &
# start the network tray application
nm-applet &
# start the volume tray application
volumeicon &
# start the battery tray application
cbatticon -i standard BAT0 &
# start the blueman tray application
blueman-applet &
# restore the last wallpaper applied with nitrogen
nitrogen --restore &
# start xfce power manager
xfce4-power-manager &
# start the gnome polkit agent
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
# set super key alone to emulate alt+F1
ksuperkey -e 'Super_L=Alt_L|F1' &
ksuperkey -e 'Super_R=Alt_L|F1' &
# set display timeout, sleep, and power off times
xset dpms 600 900 1200
# set keyboard repeat rate
xset r rate 350 60
# set screen resolution
xrandr --dpi 96
~/.config/xrandr.sh 1920 1200 60