diff options
author | Michael Kantor <michael@mikekantor.xyz> | 2025-09-01 15:33:24 -0400 |
---|---|---|
committer | Michael Kantor <michael@mikekantor.xyz> | 2025-09-01 15:33:24 -0400 |
commit | ac3aa3740a831f7bdeda342c6c4704568f01070c (patch) | |
tree | d8c2b3e0464c2561b274067df89d9c44d1a212a5 /cusmodules/cuswidgets | |
parent | d0ac4b9667108cd1eeb57b88072cf428cb953854 (diff) |
Updated README. Added autostart.sh example. Removed function to defloat mpv window. Adjusted font and formatting of GroupBox widget because a qtile update raised the numbers too high. Added OpenRazer support to colors.py and wallpaper.py; the lights of a Razer keyboard will change to the sixth color from pywal. Fixed logging in ticker_gecko.py. Migrated to new qtile entry point in relevant files.HEADmaster
Diffstat (limited to 'cusmodules/cuswidgets')
-rwxr-xr-x | cusmodules/cuswidgets/ticker_gecko.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cusmodules/cuswidgets/ticker_gecko.py b/cusmodules/cuswidgets/ticker_gecko.py index d58e458..94fd1c6 100755 --- a/cusmodules/cuswidgets/ticker_gecko.py +++ b/cusmodules/cuswidgets/ticker_gecko.py @@ -111,7 +111,7 @@ def main(): return crprices[:15] except Exception as e: - with open(f'{home}/.local/share/ticker_gecko/ticker_gecko.log', 'w') as f: + with open(f'{home}/.local/share/ticker_gecko/ticker_gecko.log', 'w+') as f: f.write(e) return f'ERROR! Check "{home}/.local/share/ticker_gecko/ticker_gecko.log".' |