Skip to content

Commit

Permalink
Add DisplayCAL, Dropbox and RescueTime to the startup script
Browse files Browse the repository at this point in the history
  • Loading branch information
AgenttiX committed Jan 24, 2025
1 parent 3c42bf7 commit 0ed0dec
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion startup/agx-user-startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,24 @@ if command -v pactl >/dev/null 2>&1; then
pactl load-module module-combine-sink
fi

if command -v syncthing >/dev/null 2>&1; then
if command -v displaycal-apply-profiles >/dev/null 2>&1; then
displaycal-apply-profiles &
fi

# Syncthing and cloud services should be started as early as possible to ensure
# that the user does not modify files before they are synced.
if command -v syncthing >/dev/null 2>&1; then
syncthing &
fi

if command -v dropbox >/dev/null 2>&1; then
dropbox start -i &
fi

if command -v rescuetime >/dev/null 2>&1; then
rescuetime &
fi

ACTIVITYWATCH="${HOME}/Downloads/activitywatch/aw-qt"
if [ -f "${ACTIVITYWATCH}" ]; then
echo "Starting ActivityWatch"
Expand Down

0 comments on commit 0ed0dec

Please sign in to comment.