7 lines
166 B
Bash
7 lines
166 B
Bash
#!/bin/bash
|
|
|
|
# Function to show a notification using zenity
|
|
show_notification() {
|
|
local message="$1"
|
|
zenity --info --text="$message" --title="Notification"
|
|
}
|