From 46b683acd43c20fd8a1141ca660a88fa83f53151 Mon Sep 17 00:00:00 2001 From: SDGDen Date: Wed, 3 Jun 2026 11:26:01 +0200 Subject: [PATCH] updated tips. --- sdgos/tips/tips.list | 4 ++-- sdgos/tips/tips.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sdgos/tips/tips.list b/sdgos/tips/tips.list index 4ecd2b9..8e62f2e 100644 --- a/sdgos/tips/tips.list +++ b/sdgos/tips/tips.list @@ -7,7 +7,7 @@ [SDG-OS Tips]: Did you know? You can use SUPER+D to toggle the dock visibility [SDG-OS Tips]: Did you know? You can use SUPER+X to open the process list [SDG-OS Tips]: Did you know? You can use SUPER+N to open your notifications -[SDG-OS Tips]: Did to know? You can use SUPER+S to toggle your settings menu +[SDG-OS Tips]: Did you know? You can use SUPER+S to toggle your settings menu [SDG-OS Tips]: Did you know? You can use SUPER+M to show the mangoWM config editor [SDG-OS Tips]: Did you know? You can use SUPER+Y to install packages via the GUI [SDG-OS Tips]: Did you know? You can use SUPER+SHIFT+Y to install AUR packages @@ -164,5 +164,5 @@ [SDG-OS Tips]: Did you know? You can use "> file.txt" to redirect command output to a file [SDG-OS Tips]: Did you know? You can use ">> file.txt" to append command output to a file [SDG-OS Tips]: Did you know? You can use "|" to pipe the output of one command to another (e.g., `ls | grep "file"`) -[SDG-OS Tips]: Did you know? You can open the overview by moving your mouse to the bottom left corner of the screen. +[SDG-OS Tips]: Did you know? You can open the overview by moving your mouse to the top left corner of the screen. diff --git a/sdgos/tips/tips.sh b/sdgos/tips/tips.sh index 5d70cc1..32f3bf6 100755 --- a/sdgos/tips/tips.sh +++ b/sdgos/tips/tips.sh @@ -12,10 +12,10 @@ case $INPUT in "") case $SETTING in standard) - shuf -n 1 ~/.config/sdgos/tips/tips.list + echo "$(shuf -n 1 ~/.config/sdgos/tips/tips.list)" ;; cow) - cowsay -r $(shuf -n 1 ~/.config/sdgos/tips/tips.list) | lolcat + cowsay -r "$(shuf -n 1 ~/.config/sdgos/tips/tips.list)" | lolcat ;; esac ;;