23 lines
536 B
Bash
23 lines
536 B
Bash
#!/bin/sh
|
|
|
|
if ! pgrep pulseaudio; then
|
|
pulseaudio --start --exit-idle-time=-1 &
|
|
fi
|
|
if ! pgrep offlineimap; then
|
|
offlineimap &
|
|
fi
|
|
|
|
redshift -x; redshift -O 6000K &
|
|
xbacklight -set 50 &
|
|
nitrogen --restore &
|
|
xcompmgr -n &
|
|
plumber &
|
|
|
|
~/src/zenUtils/batAlarm.sh &
|
|
~/src/zenUtils/transsetter.sh &
|
|
xbindkeys -f ~/.xbindkeysrc &
|
|
xset -b &
|
|
xclock -geometry -0-0 -strftime "%Y-%m-%d %H:%M" &
|
|
xosview -geomerty +0+0 &
|
|
sudo powertop --auto-tune &
|
|
exec dbus-launch ryudo -virtuals 4 -term 'alacritty --config-file ~/.config/alacritty-ryudo.yml'
|