Skip to content

Commit 0ed0dec

Browse files
committed
Add DisplayCAL, Dropbox and RescueTime to the startup script
1 parent 3c42bf7 commit 0ed0dec

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

startup/agx-user-startup.sh

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,24 @@ if command -v pactl >/dev/null 2>&1; then
2525
pactl load-module module-combine-sink
2626
fi
2727

28-
if command -v syncthing >/dev/null 2>&1; then
28+
if command -v displaycal-apply-profiles >/dev/null 2>&1; then
29+
displaycal-apply-profiles &
30+
fi
31+
32+
# Syncthing and cloud services should be started as early as possible to ensure
33+
# that the user does not modify files before they are synced.
34+
if command -v syncthing >/dev/null 2>&1; then
2935
syncthing &
3036
fi
3137

38+
if command -v dropbox >/dev/null 2>&1; then
39+
dropbox start -i &
40+
fi
41+
42+
if command -v rescuetime >/dev/null 2>&1; then
43+
rescuetime &
44+
fi
45+
3246
ACTIVITYWATCH="${HOME}/Downloads/activitywatch/aw-qt"
3347
if [ -f "${ACTIVITYWATCH}" ]; then
3448
echo "Starting ActivityWatch"

0 commit comments

Comments
 (0)