Replies: 2 comments
-
Try to create a konsole profile and play with the appearance settings. The problem is that we expect a key that is currently missing, changing the settings in konsole should create it. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have the same problem with Kubuntu too. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Finally I managed to install this app by venv but first:
Installation script have command to install requirements by pip3 but it's trying to install them globally. I commented that line, and installed dependencies in venv. But app is not working:
1 - It was looking for Konsole profile, but I was using built in default settings, after saving new profile, looks like it passed, but next I got another error
Using default configuration values.
Traceback (most recent call last):
File "/home/qbinka/Yin-Yang/main.py", line 13, in
from src import daemon_handler
File "/home/qbinka/Yin-Yang/src/daemon_handler.py", line 7, in
from src.config import ConfigWatcher, config
File "/home/qbinka/Yin-Yang/src/config.py", line 476, in
config = ConfigManager()
^^^^^^^^^^^^^^^
File "/home/qbinka/Yin-Yang/src/config.py", line 181, in init
self.load()
File "/home/qbinka/Yin-Yang/src/config.py", line 248, in load
pl.theme_light = config_loaded['plugins'][pl.name.lower()]['light_theme']
^^^^^^^^^^^^^^
File "/home/qbinka/Yin-Yang/src/plugins/konsole.py", line 42, in theme_light
self.update_profile(False, value)
File "/home/qbinka/Yin-Yang/src/plugins/konsole.py", line 179, in update_profile
profile_config['Appearance']['ColorScheme'] = theme
~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/usr/lib/python3.11/configparser.py", line 979, in getitem
raise KeyError(key)
KeyError: 'Appearance'
Now it's too much for me :)
I see this project is not dead, and I really need dark mode functionality - using settings dialog is not always convenient :)
I'm not python programmer, but If somebody will show me how to run it properly, I'll try to build some deb - it will be nice exercise for me ;) (and also first contribution in open source ;) )
Beta Was this translation helpful? Give feedback.
All reactions