blob: b1f6cb777bfc58c352aa63007b8fc208c1a97e68 (
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
|
#!/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
#~/scripts/sound.sh mic-vol full;
~/scripts/sound.sh mute-mic;
~/scripts/sound.sh mute;
|