blob: e49a8aaf9f2144e421eb65ba7a6c128d1bc83e87 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/sh
#
# ██ ██ ██
# ░░ ░░ ░██
# ██ ██ ██ ███████ ██ ██████ ██████ █████
# ░░██ ██ ░██░░██░░░██░██░░░██░ ░░██░░█ ██░░░██
# ░░███ ░██ ░██ ░██░██ ░██ ░██ ░ ░██ ░░
# ██░██ ░██ ░██ ░██░██ ░██ ░██ ░██ ██
# ██ ░░██░██ ███ ░██░██ ░░██ ░███ ░░█████
# ░░ ░░ ░░ ░░░ ░░ ░░ ░░ ░░░ ░░░░░
#
# ▓▓▓▓▓▓▓▓▓▓
# ░▓ author ▓ xero <x@xero.nu>
# ░▓ code ▓ http://code.xero.nu/dotfiles
# ░▓ mirror ▓ http://git.io/.files
# ░▓▓▓▓▓▓▓▓▓▓
# ░░░░░░░░░░
# merge custom x resources
xrdb -merge "${HOME}/.Xdefaults" &
# start the terminal emulator daemon
urxvtd -q -f -o &
# keyring
gnome-keyring-daemon &
# wifi
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
(sleep 2s && nm-applet --sm-disable) &
# power management
(sleep 2s && xfce4-power-manager) &
# sound mixer
(sleep 2s && pnmixer) &
# volume keys daemon
(sleep 2s && xfce4-volumed) &
# compositing manager
compton -b --config ~/.config/compton.conf &
# start thunar daemon
thunar --daemon &
# wallpaper
nitrogen --restore &
# configure touchpad
syndaemon -i 0.8 -d &
if egrep -iq 'touchpad' /proc/bus/input/devices; then
synclient VertEdgeScroll=0 &
synclient TapButton1=1 &
synclient HorizTwoFingerScroll=1 &
fi
# clipboard manager
(sleep 3s && clipit) &
# keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate.
xset r rate 250 25 &
# disable system beep
xset b off &
Xdefaults
# fix cursors. for a minute :/
xsetroot -cursor_name left_ptr
# start the rock
mpd &
# setup fonts
xset +fp ~/.fonts &
xset fp rehash &
# ░▒▓█ get awesome! █▓▒░
exec awesome
|