aboutsummaryrefslogtreecommitdiff
path: root/notify
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xnotify-battery4
-rwxr-xr-xnotify-time9
2 files changed, 13 insertions, 0 deletions
diff --git a/notify-battery b/notify-battery
new file mode 100755
index 0000000..0d26ef4
--- /dev/null
+++ b/notify-battery
@@ -0,0 +1,4 @@
1#!/bin/sh
2
3# Popup battery notification, based on the script battery-status
4notify-send "Battery" "$(battery-status)"
diff --git a/notify-time b/notify-time
new file mode 100755
index 0000000..1173bf0
--- /dev/null
+++ b/notify-time
@@ -0,0 +1,9 @@
1#!/bin/sh
2
3# Little notification to show time and date
4# Requirements: notify-send
5
6t=$(date +"%H:%M:%S")
7d=$(date +"%d\ %B\ %Y,\ %A")
8
9notify-send "$t" "$d"

Generated with cgit - Back to sebastiano.tronto.net