Fix default packages command

This commit is contained in:
scorpion-26 2023-05-03 19:00:39 +02:00
parent 299b497748
commit aa08206e4b
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ AudioScrollSpeed: 5
# Command that is run to check if there are out-of-date packages.
# The script should return *ONLY* a number. If it doesn't output a number, updates are no longer checked.
# Default value is applicable for Arch Linux. (See src/Config.h for explanation on the default command)
CheckPackagesCommand: pac="$(checkupdates)"; if [ $? -eq 127 ] ; then exit 127; fi; echo $pac | wc -l
CheckPackagesCommand: pac="$(checkupdates)"; if [ $? -eq 127 ] ; then exit 127; fi; echo -n $pac | wc -l
# How often to check for updates. In seconds
CheckUpdateInterval: 300

View file

@ -17,7 +17,7 @@ public:
// Script that returns how many packages are out-of-date. The script should only print a number!
// The default script runs checkupdates, and forcefully exits when checkupdates is not found, so gBar can disable the package widget.
// "checkupdates | wc -l" would always return 0 on stdout, which gBar accepts
std::string checkPackagesCommand = "pac=\"$(checkupdates)\"; if [ $? -eq 127 ] ; then exit 127; fi; echo $pac | wc -l";
std::string checkPackagesCommand = "pac=\"$(checkupdates)\"; if [ $? -eq 127 ] ; then exit 127; fi; echo -n $pac | wc -l";
bool centerTime = true;
bool audioRevealer = false;