aboutsummaryrefslogtreecommitdiff
path: root/.local/bin
diff options
context:
space:
mode:
authorBlista Kanjo2023-07-18 19:54:30 -0400
committerBlista Kanjo2023-07-18 19:54:30 -0400
commit4c1bc9db5478bfd0f1d0e67246bba74c94f4c373 (patch)
treeb80e2bed011f5bcf41fc96c3ea28fdd1241370c2 /.local/bin
parentde4625baa720a9a3a89ca28b55b4320fe990437e (diff)
refactor: remove `widget-pacman_updates`
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/awesome-widgets/widget-pacman_updates9
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/awesome-widgets/widget-pacman_updates b/.local/bin/awesome-widgets/widget-pacman_updates
deleted file mode 100755
index dfd21e4..0000000
--- a/.local/bin/awesome-widgets/widget-pacman_updates
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-if ! command -v yay >/dev/null 2>&1; then
- notify-send "awesomewm widget error" "the 'yay' package is required for the widget to work."
-else
- yay -Sy >/dev/null
- count=$(yay -Qu | wc -l)
- echo " 📤 $count"
-fi