Skip to content

Commit

Permalink
startup: welcome words refined
Browse files Browse the repository at this point in the history
  • Loading branch information
wickes1 committed Oct 18, 2022
1 parent 1e2db1d commit 2f11bdb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions roles/base/files/zsh/.startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export DISPLAY=:0.0
# === Startup Command ===
# welcome words
MSG=$(cat <<-END
Time: <b>$(date +"%Y-%m-%d %T")</b>
System Initializing
END
)
notify-send -u normal -t 2000 \
"hello world" \
"Initializing" \
$MSG

# auto hide mouse cursor
Expand All @@ -33,4 +33,11 @@ notify-send -t 2000 "unclutter" "mouse idle timeout 10 seconds"
# gup update > /dev/null && notify-send "gup updated"

# goodby words
notify-send "goodbye wolrd"

MSG=$(cat <<-END
Today is $(date +"%Y-%m-%d %T")
END
)
notify-send -u normal -t 5000 \
"hello world" \
$MSG

0 comments on commit 2f11bdb

Please sign in to comment.