aboutsummaryrefslogtreecommitdiffstats
path: root/bin/autostart
blob: 8280ce3001390185847f9a4f594952288a6fb9e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
xset -dpms
xset s 3600 3600
xset s off
# make RT check and don't start!
KERNEL_NAME=$(uname -r)
if [[ "$KERNEL_NAME" != *rt* ]]; then
  dropbox start &
  owncloud &
  compton --config ~/.config/compton.conf -b
else
  pulseaudio --kill &
#  start_jack &
  run_once qjackctl &
fi