blob: d81c7574136e0f7bd8e63c9cf521f99dcefc5023 (
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
36
37
|
[[ -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) &
(sleep 15; mopidy -q) &
## Start Window Manager
exec awesome
#exec dwm
|