Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
Background story: I would like to have a button in my touch bar which changes the illumination of the keyboard in small steps (what you normally get from pressing Illumination(up/down)+option+shif...
Question
macos11
#3: Post edited
- Background story:
- I would like to have a button in my touch bar which changes the illumination of the keyboard in small steps (what you normally get from pressing `Illumination(up/down)`+`option`+`shift`).
- To do this I'm currently trying to use [MTMR (My touchbar. My rules.)](https://github.com/Toxblh/MTMR), which allows me to create my own buttons, which then can run shell scripts, apple scripts, etc.
- ---
- For the screen brightness I can easily get my desired behaviour by this apple script:
- ```
tell application \"System Events\" to key code 107 using {option down, shift down}- ```
- However for the illumination key, there does not seem to be a key code which I can use in the apple script. Is there any other way to change the keyboard illumination programmatically?
- *(If possible, I would like to use open source tools and avoid commercial software like BetterTouchTools)*
- Background story:
- I would like to have a button in my touch bar which changes the illumination of the keyboard in small steps (what you normally get from pressing `Illumination(up/down)`+`option`+`shift`).
- To do this I'm currently trying to use [MTMR (My touchbar. My rules.)](https://github.com/Toxblh/MTMR), which allows me to create my own buttons, which then can run shell scripts, apple scripts, etc.
- ---
- For the screen brightness I can easily get my desired behaviour by this apple script:
- ```
- tell application "System Events" to key code 107 using {option down, shift down}
- ```
- However for the illumination key, there does not seem to be a key code which I can use in the apple script. Is there any other way to change the keyboard illumination programmatically?
- *(If possible, I would like to use open source tools and avoid commercial software like BetterTouchTools)*
#1: Initial revision
Programmatically changing the keyboard illumination in small steps
Background story: I would like to have a button in my touch bar which changes the illumination of the keyboard in small steps (what you normally get from pressing `Illumination(up/down)`+`option`+`shift`). To do this I'm currently trying to use [MTMR (My touchbar. My rules.)](https://github.com/Toxblh/MTMR), which allows me to create my own buttons, which then can run shell scripts, apple scripts, etc. --- For the screen brightness I can easily get my desired behaviour by this apple script: ``` tell application \"System Events\" to key code 107 using {option down, shift down} ``` However for the illumination key, there does not seem to be a key code which I can use in the apple script. Is there any other way to change the keyboard illumination programmatically? *(If possible, I would like to use open source tools and avoid commercial software like BetterTouchTools)*