Skip to content

Commit

Permalink
waybar: Fix the check updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tasmaniandaemon authored Oct 15, 2024
1 parent 617cef1 commit 8a29239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .config/waybar/config
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@
"restart-interval": 1
},
"custom/pacman": {
"format": " {} update available",
"format": " {} updates available",
"exec": "checkupdates | wc -l",
"exec-if": "test $(checkupdates | wc -l) -ne 0",
"exec-if": "[ $(checkupdates | wc -l) -gt 0 ]",
"interval": 3600,
"on-click": "checkupdates; pkill -SIGRTMIN+8 waybar"
},
Expand Down

0 comments on commit 8a29239

Please sign in to comment.