aboutsummaryrefslogtreecommitdiff
path: root/config/xorg/init.sh
blob: f289c028db452fd798bce47a09fd9248d180ecb1 (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: day mode
~/scripts/commands/:day

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

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