blob: c30d76160050ad88e4cf9b28bcdfc418ce86e2d7 (
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
|
COMPOSITE="$HOME/.config/openbox/composite"
if [ -f $COMPOSITE ]; then
bash $COMPOSITE
fi
SCREENRES="$HOME/.config/openbox/screenres"
if [ -f $SCREENRES ]; then
bash $SCREENRES
fi
gnome-keyring-daemon --start &
xfce4-panel &
xfce4-power-manager &
xcape -e 'Super_L=Control_L|Shift_L|Alt_L|Super_L|D' &
/usr/lib64/xfce4/notifyd/xfce4-notifyd &
spacefm --desktop &
xscreensaver -no-splash &
nm-applet &
# fuck your stupid telemetry
cd $HOME/.config/openbox
xfce4-terminal -x "$PWD/ibus-wait"
echo "starting ibus"
./ibus-wait &
./killniggers.sh &
cd ~
|