diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/autostart | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/bin/autostart b/bin/autostart index b5515da..1fac332 100755 --- a/bin/autostart +++ b/bin/autostart @@ -1,5 +1,12 @@ #!/bin/bash # make RT check and don't start! -dropbox start & -owncloud & -compton --config ~/.config/compton.conf -b +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 |