diff options
-rw-r--r-- | lmlib.py | 3 | ||||
-rwxr-xr-x | logout-manager-tcl.py | 6 |
2 files changed, 3 insertions, 6 deletions
@@ -15,7 +15,7 @@ import configparser, platform, os -logout_manager_version="2019-06-17a" +logout_manager_version="2019-06-21a" class Actions: @@ -253,7 +253,6 @@ def Initialize_config(): # written primarily for el7 which uses "app" for the system-reboot icons, etc. a = platform.dist() try: - # WORKHERE: after moving in the gtk3 default icon theme check to lmlib, do a check here, for of the theme=default and gtk3_default=hicolor, to make category=apps if a[0] == "redhat" and int(a[1].split(".")[0]) <= 7: config.set_icon_category("apps") except: diff --git a/logout-manager-tcl.py b/logout-manager-tcl.py index 8daf66d..8c4bc6a 100755 --- a/logout-manager-tcl.py +++ b/logout-manager-tcl.py @@ -22,10 +22,8 @@ # tooltips https://stackoverflow.com/questions/3221956/how-do-i-display-tooltips-in-tkinter/41381685#41381685 # Improve: # Dependencies: -# package: RPM | DPKG -# tkinter: python36-tkinter | python3-tk -# PIL: python36-pillow-tk | python3-pil.imagetk -# pip3 install cairosvg +# devuan: python3-tk python3-pil.imagetk python3-cairosvg +# el7: python36-tkinter python36-pillow-tk ( pip3 install cairosvg ) import glob, re import tkinter as tk |