diff options
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index e411da5a529a..cbbad7799047 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -22,12 +22,12 @@ (defun brightness-up () (interactive) - (shell-command "xbacklight -inc 5") + (shell-command "light -A 4") (message "Brightness increased")) (defun brightness-down () (interactive) - (shell-command "xbacklight -dec 5") + (shell-command "light -U 4") (message "Brightness decreased")) (defun set-xkb-layout (layout) |