#arch-linux #linux #wayland #waybar

app waybar-module-pacman-updates

waybar module for Arch to show system updates available

5 releases

0.2.4 Mar 22, 2024
0.2.2 Sep 18, 2023
0.2.1 Feb 23, 2023
0.2.0 Feb 17, 2023
0.1.0 Feb 17, 2023

#98 in Unix APIs

Download history 5/week @ 2024-02-26 1/week @ 2024-03-11 120/week @ 2024-03-18 18/week @ 2024-04-01

138 downloads per month

GPL-3.0-or-later

16KB
77 lines

waybar module for Arch to show system updates available

screenshot

Reason

Why not just exec checkupdates in custom waybar module?

  • This module will provide relevant local information constantly and periodically update data from the network in backgroud. Direct "checkupdates" will only give you one of two things: updating the information with a long delay or having the module constantly active on the network.
  • This module has 2 states which gives you the ability to display different icons depending on status.
  • Waybar expects JSON in an infinite loop from modules. So we have this.
  • See updates list in tooltip.

This small program will give you fast updates with less network usage. After you have installed all the updates, the module will immediately go into the Updated state. You don't need to send signals to waybar to update this module state.

How to use

  • install binary waybar-module-pacman-updates to your PATH
  • add to ~/.config/waybar/config
   "custom/updates": {
       "format": "{} {icon}",
       "return-type": "json",
       "format-icons": {
           "has-updates": "󱍷",
           "updated": "󰂪"
       },
       "exec-if": "which waybar-module-pacman-updates",
       "exec": "waybar-module-pacman-updates  --interval-seconds 5 --network-interval-seconds 300"
   }
  • add "custom/updates" to one of modules-left, modules-center or modules-right
  • install nerd font to see icons or change icons as you like and restart waybar

installation options

Install from cargo crates

cargo install waybar-module-pacman-updates

Make sure you have $HOME/.cargo/bin in your PATH env variable.

Install from AUR

yay -S waybar-module-pacman-updates-git

Install from source

sh -c "$(wget -O- https://raw.githubusercontent.com/coffebar/waybar-module-pacman-updates/master/installer.sh)"

Make sure you have $HOME/.local/bin in your PATH env variable.

Dependencies

~11KB