This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/waybar/pacman.sh

12 lines
303 B
Bash

#!/bin/sh
num_updates=$(checkupdates | wc -l)
if [ $num_updates -gt 1 ]; then
echo "{\"text\": \"$num_updates updates\", \"class\": \"warning\"}"
elif [ $num_updates -eq 1 ]; then
echo "{\"text\": \"$num_updates update\", \"class\": \"warning\"}"
else
echo "{\"text\": \"up to date\"}"
fi