save point

This commit is contained in:
kake26 2025-01-27 00:12:03 -06:00
parent 795f72db03
commit d60d417579
Signed by: kake26
GPG key ID: E8AFC43591876B4D
9 changed files with 48 additions and 1 deletions

7
modules/gui.bash Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
# Function to show a notification using zenity
show_notification() {
local message="$1"
zenity --info --text="$message" --title="Notification"
}