added scripts for hyprlock
This commit is contained in:
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
s=$(cut -d. -f1 /proc/uptime)
|
||||
h=$((s / 3600))
|
||||
m=$(((s % 3600) / 60))
|
||||
printf "%02d:%02dh" "$h" "$m"
|
||||
Reference in New Issue
Block a user