-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathxprofile
More file actions
executable file
·43 lines (30 loc) · 897 Bytes
/
xprofile
File metadata and controls
executable file
·43 lines (30 loc) · 897 Bytes
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
# Read the Xresources file if it exists.
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
# Bind keys with sxhkd.
sxhkd &
# Launch the screen locker.
xautolock -time 09 -locker "/usr/local/bin/lock" -detectsleep -secure -corners 0-00 -cornerdelay 3 -cornerredelay 20 &
# Restore the desktop background.
if [ -f ~/.fehbg ]; then
sh ~/.fehbg &
fi
# Control volume with pasystray.
pasystray &
# NetworkManager for managing networks.
nm-applet &
# Hide the cursor when idle.
unclutter &
# Notifications with dunst
dunst &
# Load ICC color profile for Framework 13 2.8k display.
xcalib -d :0 /usr/share/color/icc/BOE0CB4.icm
# Adjust color temperature with Redshift.
redswitch -g
# Load the best monitor profile available
autorandr --change --default default
# Udiskie for mounting.
udiskie &
# Blueman for bluetooth
blueman-applet &
# KDE Connect tray incon
kdeconnect-indicator &