We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried applying the following theme after installing ttkthemes with pip:
diff --git a/NiimPrintX/ui/main.py b/NiimPrintX/ui/main.py index 390ff8dbbd8a..d9fdf9560a08 100644 --- a/NiimPrintX/ui/main.py +++ b/NiimPrintX/ui/main.py @@ -1,6 +1,7 @@ import os import tkinter as tk from tkinter import ttk +import ttkthemes from tkinter import messagebox from .AppConfig import AppConfig @@ -70,6 +71,9 @@ class LabelPrinterApp(tk.Tk): elif self.app_config.os_system == "Windows": style = ttk.Style(self) style.theme_use('xpnative') + else: + style = ttkthemes.ThemedStyle() + style.theme_use('yaru') self.create_widgets() self.create_menu()
but the UI looks like a mix'n'match of styles:
Is there a better way to get a more modern look on Linux?
The text was updated successfully, but these errors were encountered:
From labbots/NiimPrintX#14
3be55de
No branches or pull requests
I tried applying the following theme after installing ttkthemes with pip:
but the UI looks like a mix'n'match of styles:
Is there a better way to get a more modern look on Linux?
The text was updated successfully, but these errors were encountered: