-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxinitrc
executable file
·40 lines (35 loc) · 935 Bytes
/
xinitrc
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
#!/bin/bash
PATH=/home/garoth/.scripts:/home/garoth/Programs/bin:$PATH
setxkbmap us dvorak
xmodmap - << EOF
remove Lock = Caps_Lock
keysym Caps_Lock = Escape
EOF
# These things will only start after internet is established
(
while true; do
check-connection.sh
if [ $? -eq 0 ]; then
# Give connection a little while to settle
sleep 8
# List of programs (background them)
pidgin &
skype &
mumble &
break
fi
sleep 3
done
) &
# Launch a DBus session if one is not running.
if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
eval `dbus-launch --sh-syntax --exit-with-session`
echo "D-Bus per-session daemon address is: $DBUS_SESSION_BUS_ADDRESS"
fi
hourly-break.sh &
unclutter &
xcompmgr &
noblank &
sudo netcfg kent &
#jackd -r -d alsa &
awesome &> /home/garoth/Info/awesome.log