-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arch_updates: hourly cache_timeout, add a note about using alpm-hooks
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
Display number of pending updates for Arch Linux. | ||
Configuration parameters: | ||
cache_timeout: refresh interval for this module (default 600) | ||
cache_timeout: refresh interval for this module (default 3600) | ||
format: display format for this module, otherwise auto (default None) | ||
hide_if_zero: don't show on bar if True (default False) | ||
|
@@ -19,6 +19,10 @@ | |
paru: feature packed AUR helper | ||
pikaur: pacman wrapper and AUR helper written in python | ||
Note: | ||
py3status for Arch-based distributions should include an alpm hook | ||
to refresh this module after packages and/or files being modified. | ||
@author Iain Tatch <[email protected]> | ||
@license BSD | ||
|
@@ -36,7 +40,7 @@ class Py3status: | |
""" """ | ||
|
||
# available configuration parameters | ||
cache_timeout = 600 | ||
cache_timeout = 3600 | ||
format = None | ||
hide_if_zero = False | ||
|
||
|