blob: 0573640078a323df42b6ab9869e626ef072adcec (
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
|
#!/bin/sh
# ██
# ░██
# ██████ ██████ ██████ ██ ██
# ░░░██░ ░░██░░█ ░░░░░░██ ░░██ ██
# ░██ ░██ ░ ███████ ░░███
# ░██ ░██ ██░░░░██ ░██
# ░░██ ░███ ░░████████ ██
# ░░ ░░░ ░░░░░░░░ ██
# ░░
#stalonetray -c ~/.stalonetrayrc &
stalonetray --kludges fix_window_pos --dockapp-mode simple --geometry 1x1+165 &
# force position and ignore that ▄█▀ █▬█ █ ▀█▀
trayid=`lsw`
wmv -a 165 0 $trayid
chwb -x 0x222222 -s 0 $trayid
ignw -s $trayid
# keyring
gnome-keyring-daemon &
# wifi
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
nm-applet &
# power management
xfce4-power-manager &
# sound mixer
pnmixer &
# volume keys
xfce4-volumed &
# clipboard manager
clipit &
|