Skip to content
New issue

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

Toogle dark mode (m) does not work in PowerShell or BitWise SSH client #32

Open
Samplissimo opened this issue Jan 24, 2025 · 1 comment

Comments

@Samplissimo
Copy link
Contributor

Image

@JOJ0
Copy link
Owner

JOJ0 commented Feb 9, 2025

Docs on Textual themes: https://textual.textualize.io/guide/design/#__tabbed_1_5

Somewhere around here to fix/implement in DiscoDOS:

def __init__(
self,
rows,
headers,
sales_listing_headers,
discogs,
collection,
cli,
user,
):
super().__init__()
super().discogs_connect(
user_token=None,
app_identifier=None,
discogs=discogs,
)
self.collection = collection
self.cli = cli
self.user = user
self.table = None
self.rows = rows
self.headers = headers
self.rlog = RichLog()
# Columns content
self.left_column_headline = None
self.middle_column_headline = None
self.right_column_headline = None
self.left_column_content = None
self.middle_column_upper_content = None
self.middle_column_content = None
self.middle_column_lower_content = None
self.right_column_upper_content = None
self.right_column_content = None
# Content that can be fetched from DB as well as from Discogs
self.sales_price = None
self.sales_listing_details = None
# Content only available from Discogs
self.marketplace_stats = None
# Hardcoded column translations
self.key_translation = sales_listing_headers
def action_toggle_dark(self):
self.dark = not self.dark

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants