diff options
author | jao <jao@gnu.org> | 2021-07-23 00:28:29 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-07-23 00:28:29 +0100 |
commit | 4b83ce0a7c303dd5dcece75b9401e8e778592fbc (patch) | |
tree | 7c9cb399912bc35ee3c50dfb6c13e584e41d536a | |
parent | 0c2463eed0a295f63574ca7a6ceea4468ba9d424 (diff) | |
download | elibs-4b83ce0a7c303dd5dcece75b9401e8e778592fbc.tar.gz elibs-4b83ce0a7c303dd5dcece75b9401e8e778592fbc.tar.bz2 |
fix for brightnessctl arguments
-rw-r--r-- | init.org | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -191,12 +191,12 @@ (defun jao-bright-up () (interactive) - (jao-exec-string "brightnessctl -q s %%5+") + (jao-exec-string "brightnessctl -q s 5%%+") (jao-bright-show)) (defun jao-bright-down () (interactive) - (jao-exec-string "brightnessctl -q s %%5-") + (jao-exec-string "brightnessctl -q s 5%%-") (jao-bright-show)) #+end_src *** Keyboard and hydra |