add(hyprlock): use no animation
This commit is contained in:
@@ -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様"
|
||||
|
||||
Reference in New Issue
Block a user