Added new configs for kitty and polybar. Small changes in i3 config.

This commit is contained in:
2019-11-23 22:23:09 +03:00
parent c7477b365e
commit 323fa549b3
11 changed files with 1563 additions and 298 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
updates_arch=0
fi
if ! updates_aur=$(yay -Qum 2> /dev/null | wc -l); then
updates_aur=0
fi
updates=$(("$updates_arch" + "$updates_aur"))
if [ "$updates" -gt 0 ]; then
echo "$updates"
else
echo " 0"
fi