blob: 9164b67bca5c17bb8224c7a4a792bf8fb01a63eb (
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
26
27
28
29
30
31
32
33
34
35
|
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
## Keys modification:
# CAPS-LOCK fix: modifies the CAPS-LOCK behaviour so that it send an
# <ESC> signal on release and a CTRL signal when hold. Also CAPS-LOCK
# is (de)activated pressing both shift keys.
setxkbmap -option ctrl:nocaps -option shift:both_capslock
xcape -e 'Control_L=Escape'
## Beep
# Removes annoying beep
xset b 0
## Simple X HotKey Daemon
# Simple X hotkey daemon that reacts to input events by executing
# commands (wm indipendent).
(sleep 10; sxhkd) &
## Redshift
# Adjusts the color temperature of your screen according to your
# surroundings (location).
(sleep 10; redshift) &
## Unclutter
# Hides your X mouse cursor when you do not need it (with `-root` option
# even if in the X root window.
(sleep 15; unclutter -root) &
## MPD
# Start Music Player Daemon
(sleep 15; mpd) &
## Start AwesomeWM
exec awesome
|