aboutsummaryrefslogtreecommitdiff
path: root/config/xorg/init.sh
blob: d3a247368ec60cd16aa995de7205688c96a553a9 (plain) (blame)
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
#!/usr/bin/env sh

# Xresources (theme)
xrdb -merge ~/.Xresources;

# Xmodmap (keymapping)
xmodmap ~/.config/xorg/Xmodmap;

# No screen saver
xset s off;
xset -dpms;
xset s noblank;

# Typing rate
xset r rate 350 30;

# Display settings
~/scripts/commands/:day

# Sound
amixer set Capture nocap;
amixer set Master off;

dbus-update-activation-environment --systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY || true;