-
Notifications
You must be signed in to change notification settings - Fork 0
/
VM_xinitrc
90 lines (63 loc) · 1.43 KB
/
VM_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
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
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
#exec /usr/local/bin/dusk >/tmp/dusk.log 2>&1
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
export PATH=/home/ray/scripts:$PATH
export DE=dusk
xset +fp /usr/share/fonts/local/ &
xrandr -s 1600x900 &
#st -c "MyFancyClock" -g "=53x8" -e tty-clock -s &
copyq &
sxhkd &
spice-vdagentd &
dunst &
variety &
syncthing &
#insync start &
telegram-desktop &
caprine &
discord &
whatsapp-for-linux &
#whatsapp-nativefier &
picom &
slack &
tweetdeck &
# ticktick &
/home/ray/scripts/evernote.sh &
nomachine &
flameshot &
autokey-gtk &
blueberry-tray &
/home/ray/scripts/startchrome.sh &
/home/ray/scripts/startviv.sh &
/home/ray/scripts/startmail.sh &
/home/ray/scripts/reddit.sh &
/home/ray/scripts/start_teams &
/home/ray/scripts/mybar.sh &
setxkbmap -layout us -variant intl &
#wal -R &
mpd &
#/home/ray/AppImages/Ferdi-5.6.4-nightly.29.AppImage &
exec /usr/local/bin/dusk >/tmp/dusk.log 2>&1