Disable notification timeout

This commit is contained in:
John Mertz 2022-06-06 13:58:30 -04:00 committed by John Mertz
parent 5c3a10ce76
commit 82b536a890
Signed by: jpm
GPG Key ID: E9C5EA2D867501AB
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
notify-send Disks \
notify-send -t 0 Disks \
"$(lsblk -o NAME,SIZE,FSUSE%,MOUNTPOINT | grep -vP '^loop' | \
sed 's/MOUNTPOINT/MOUNT/' | sed -e 's/│ └─/+---/' | \
sed -e 's/ └─/+---/' | sed -e 's/├─/+-/' | sed -e 's/└─/+-/' | \

View File

@ -1,5 +1,5 @@
#!/bin/bash
notify-send 'Memory Usage' "`free -h | \
notify-send -t 0 'Memory Usage' "`free -h | \
awk '{printf(\"%6s %6s %6s %6s\n\", $1, $2, $3, $4)}' | \
sed -r 's/(.*) shared$/ \1/'`"