You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to be able to use a hotkey to cycle through themes, rather than having different bindings for each one and having to disable, then enable each, to change themes. I use a few variants of DiscordRecolor with lighter/darker shades, for example, but this would be applicable to anyone who wants to cycle through their themes conveniently.
Example pseudocode on first run:
disable all themes
prompt user to whitelist themes they don't want disabled when cycling
set current_index to -1
on dedicated "theme cycle" hotkey:
disable theme with current_index (if not -1)
increment current_index
if (current_index == len(themes)) current_index = 0
enable theme with current_index
The text was updated successfully, but these errors were encountered:
It would be useful to be able to use a hotkey to cycle through themes, rather than having different bindings for each one and having to disable, then enable each, to change themes. I use a few variants of DiscordRecolor with lighter/darker shades, for example, but this would be applicable to anyone who wants to cycle through their themes conveniently.
Example pseudocode
on first run:
on dedicated "theme cycle" hotkey:
The text was updated successfully, but these errors were encountered: