Disable notification timeout
This commit is contained in:
parent
5c3a10ce76
commit
82b536a890
|
@ -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/└─/+-/' | \
|
||||
|
|
|
@ -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/'`"
|
||||
|
|
Loading…
Reference in New Issue