Replies: 7 comments 7 replies
-
The answer would likely be in this file:
There are two places with this snippet: for (let i = 1; i < 10; i++) { We'd need to start in 0, but probably some places would need to distinguish between 0 and 10. |
Beta Was this translation helpful? Give feedback.
-
Ideas from: https://superuser.com/questions/1548836/how-to-disable-supern-shortcuts-in-cinnamon |
Beta Was this translation helpful? Give feedback.
-
I was thinking of doing this for my CassiaWindowList applet. Didn't know if anyone would appreciate the 0 key so I didn't bother, but I guess I can make the change now. Given the location of |
Beta Was this translation helpful? Give feedback.
-
I'd really appreciate that change, thanks! There actually is a reason for 0 coming after 9: https://www.youtube.com/shorts/oaWVhJ7XQmo However, as a comment in this other video points out (https://www.youtube.com/watch?v=GQqv6RWzA4k): in the Hungarian layout, 0 does come before 1. So I think Super + 0 could be opt-int or, at least, configurable. |
Beta Was this translation helpful? Give feedback.
-
OK.. I added this feature to the Github development version of CassiaWindowList. If you want this feature you would have to:
If you decide to try the dev version of CassiaWindowList then I would appreciate any feed back you might have on how the new feature works for you (or any other feedback on the applet in general). |
Beta Was this translation helpful? Give feedback.
-
The idiom is ( i=0; I<10; i++). If you make it ( i=1; I<11; i++), then the tenth window becomes Alt + 1 + 0, instead of the first through tenth windows being numbered 0-9, respectively. Personally, I just cycle through the open windows with Alt + Tab, since my mind could never hold the open windows and their numbers together. I'd always open window 3 when I really wanted window 7, or whatever. 🤣 |
Beta Was this translation helpful? Give feedback.
-
The CassiaWindowList applet now has this feature in the new 2.4.3 version that was published yesterday. By default the Super+0 key will activate the 10th window on the window list. Any "smart numeric hotkeys" you configure will now include "0" as the tenth application window to activate. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I love this feature: open/minimize pinned apps with keys Super + number. It currently only works with 1-9 (first to ninth pinned app).
I'd like to be able to do the same to the 10th pinned app by pressing Super + 0 (yes, I have 10 apps that I use all the time).
Is there a reason not to support 0 (10th app)? If so, can I enable it via some config?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions