summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update README with dropboxd_status docstringUltrabug2015-08-071-0/+19
|
* dropbox_status module QA and cache_timeout supportUltrabug2015-08-071-13/+22
|
* Merge pull request #99 from tjaartvdwalt/masterUltrabug2015-08-071-0/+54
|\ | | | | new dropbox_status module by @tjaartvdwalt
| * updated documentation to make it more clear what the module doesTjaart van der Walt2015-05-231-1/+8
| |
| * Changed license to BSDTjaart van der Walt2015-05-231-1/+1
| |
| * changed filenameTjaart van der Walt2015-05-231-0/+0
| |
| * added dropbox.pyTjaart van der Walt2015-05-131-0/+47
| |
* | fix i3status config file generation thx to @hlmtreUltrabug2015-08-071-3/+18
| | | | | | | | | | some i3status modules have no default configuration and i3status ignores them if they are requested by the user but not configured py3status was always generating an empty config for all i3status modules and this crashed i3status with a message "glob() failed"
* | sort i3status generated config file for better readabilityUltrabug2015-08-071-1/+1
| |
* | add taskwarrior module descriptionUltrabug2015-08-031-0/+11
| |
* | taskwarrior module: QA and python3 supportUltrabug2015-08-031-5/+8
| |
* | Merge pull request #108 from jazmit/masterUltrabug2015-08-031-0/+54
|\ \ | | | | | | new taskwarrior module by @jazmit
| * | Edited taskwarrior module to conform to best practicesJames2015-07-161-11/+15
| | |
| * | Added TaskWarrior moduleJames2015-07-151-0/+50
| | |
* | | update README with current modules docstringsUltrabug2015-08-031-20/+70
| | |
* | | netdata module: fix incorrect docstringUltrabug2015-08-031-1/+1
| | |
* | | volume_status module: QA and PEP8Ultrabug2015-08-031-105/+109
| | |
* | | Merge pull request #101 from jantuomi/masterUltrabug2015-08-031-0/+143
|\ \ \ | | | | | | | | new volume_status module by @jantuomi
| * | | Calls to amixer now use shlex python module. Added device config option.Jan T2015-07-261-1/+4
| | | |
| * | | Removed forced 'on_click' behaviour.Jan T2015-07-261-4/+0
| | | |
| * | | Fixed issue where text replacement broke on python2.Jan T2015-07-261-2/+1
| | | |
| * | | Added hashbang and encoding.Jan T2015-06-101-0/+5
| | | | | | | | | | | | | | | | Added alsa-utils package as a dependency.
| * | | Fixed regexes.Jan T2015-06-101-6/+28
| | | | | | | | | | | | | | | | Added note about forcing py3status update.
| * | | Fixed typos and comments.Jan T2015-06-101-2/+4
| | | |
| * | | Changed standard formats.Jan T2015-06-101-5/+5
| | | |
| * | | Added volume_status.py.Jan T2015-06-091-0/+116
| | | |
* | | | netdata module: fix wrong nic default thx to @h8h on issue #111Ultrabug2015-08-031-1/+1
| | | |
* | | | Merge pull request #109 from shrimpza/masterUltrabug2015-07-241-5/+25
|\ \ \ \ | | | | | | | | | | dpms module: add format string support wrt issue #98 by @shrimpza
| * | | | typo, my bad :(Kenneth Watson2015-07-211-2/+2
| | | | |
| * | | | address comment raised in #109, now uses separate format strings for on/off, ↵Kenneth Watson2015-07-211-17/+6
| | | | | | | | | | | | | | | | | | | | rather than status strings
| * | | | add format string support for dpms module, and add some optionsKenneth Watson2015-07-201-1/+32
|/ / / /
* | | | Merge branch 'master' of github.com:ultrabug/py3statusUltrabug2015-07-201-1/+1
|\ \ \ \
| * \ \ \ Merge pull request #107 from jazmit/patch-1Ultrabug2015-07-161-1/+1
| |\ \ \ \ | | |_|/ / | |/| | | example_module : corrected typo by @jazmit
| | * | | Corrected typoJames Smith2015-07-151-1/+1
| |/ / /
* | | | imap module: switch to support format optionUltrabug2015-07-191-7/+9
| | | |
* | | | aws_bill module: support format optionUltrabug2015-07-191-3/+7
|/ / /
* | | external_script and static_string modules code QAUltrabug2015-07-092-30/+31
| | |
* | | fix modules README display and descriptionsUltrabug2015-07-091-9/+5
| | |
* | | Merge pull request #106 from frimdo/new_modulesUltrabug2015-07-093-0/+134
|\ \ \ | | | | | | | | new external_script and static_string modules by @frimdo
| * | | repaired order of modules in readmeDominik2015-07-021-27/+27
| | | |
| * | | format RFC support for external_script and static_stringDominik2015-06-253-22/+35
| | | |
| * | | Adding external_script and static_string modules and mentioning them in readmeDominik2015-06-253-0/+121
|/ / /
* | | example_module: fix standalone testing thanks to @frimdo issue #103Ultrabug2015-06-221-1/+1
| | |
* | | Merge pull request #102 from mmlb/fix-pomodoro-py3Ultrabug2015-06-161-3/+3
|\ \ \ | | | | | | | | pomodoro: fix display_bar in python3 by @mmlb
| * | | pomodoro: fix display_bar in python3Manuel Mendez2015-06-101-3/+3
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | In python3 calling `encode` on a string will yield a `bytes` obj which then leads to a status bar with escaped hex chars instead of the bars, i.e. `Pomodoro [b'\xe2\x96\x89\xe2\x96\x89\xe2\x96\x8d ']` vs `Pomodoro [b'▉▉▍ ']`. The fix in python2 is to call format on a `unicode` object vs a `str` (ansii) object. This will work fine in python3 > 3.3 where the `u` prefix was brought into python3.
* / / fix version badge dead urlUltrabug2015-06-121-1/+1
|/ /
* | Merge pull request #100 from shrimpza/masterUltrabug2015-05-211-66/+81
|\ \ | | | | | | sysdata module : add format string support, refactor and cleanup by @shrimpza
| * | address review comments raised in #100shrimpza2015-05-181-12/+8
| | |
| * | add format string support for sysdata module, refactor and cleanupshrimpza2015-05-161-63/+82
|/ /
* | keyboard_layout module: add missing cache_timeout parameter in the docstringUltrabug2015-05-151-0/+3
| |