add(hyprlock): use no animation

This commit is contained in:
kenji
2026-01-01 17:31:50 -06:00
parent 237a7996f5
commit 7bdc88389b
3 changed files with 26 additions and 17 deletions
+8 -3
View File
@@ -1,11 +1,16 @@
#!/usr/bin/env bash
hour=$(date +%H)
# TODO(human): Set your name here
name="kenji"
if [[ $hour -lt 12 ]]; then
echo "おはようございます"
greeting="おはようございます"
elif [[ $hour -lt 18 ]]; then
echo "こんにちは"
greeting="こんにちは"
else
echo "こんばんは"
greeting="こんばんは"
fi
echo "$greeting
$name様"