mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-26 14:13:53 +01:00
updated pkg module waybar
This commit is contained in:
parent
b487d28d00
commit
2ce4f64165
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
pacman_check() {
|
pacman_check() {
|
||||||
pac=$(checkupdates 2>/dev/null)
|
pac=$(checkupdates 2>/dev/null)
|
||||||
if test -n "$pac"; then pac_count=$(wc -l <<< "$pac"); fi
|
if test -n "$pac"; then pac_count=$(wc -l <<< "$pac"); else pac_count="0"; fi
|
||||||
aur=$(trizen -Qua 2>/dev/null)
|
aur=$(trizen -Qua 2>/dev/null)
|
||||||
if test -n "$aur"; then aur_count=$(wc -l <<< "$aur"); fi
|
if test -n "$aur"; then aur_count=$(wc -l <<< "$aur"); else aur_count="0"; fi
|
||||||
|
|
||||||
if test -z "$pac_count" && test -z "$aur_count"; then exit; fi
|
if test -z "$pac_count" && test -z "$aur_count"; then exit; fi
|
||||||
|
|
||||||
@ -18,9 +18,9 @@ pacman_check() {
|
|||||||
|
|
||||||
xbps_check(){
|
xbps_check(){
|
||||||
xbps=$(xbps-install -SMnu 2>/dev/null)
|
xbps=$(xbps-install -SMnu 2>/dev/null)
|
||||||
if test -n "$xbps"; then xbps_count=$(wc -l <<< "$xbps"); fi
|
if test -n "$xbps"; then xbps_count=$(wc -l <<< "$xbps"); else xbps_count="0"; fi
|
||||||
flatpak=$(flatpak remote-ls --updates --columns=name)
|
flatpak=$(flatpak remote-ls --updates --columns=name)
|
||||||
if test -n "$flatpak"; then flatpak_count=$(wc -l <<< "$flatpak"); fi
|
if test -n "$flatpak"; then flatpak_count=$(wc -l <<< "$flatpak"); else flatpak_count="0"; fi
|
||||||
|
|
||||||
if test -z "$xbps_count" && test -z "$flatpak_count"; then exit; fi
|
if test -z "$xbps_count" && test -z "$flatpak_count"; then exit; fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user