diff options
author | Thanos Apollo <[email protected]> | 2023-11-10 18:29:59 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-11-10 18:29:59 +0200 |
commit | 143fa23395b9dcc482d3c7251294eefd66729a69 (patch) | |
tree | 4d0f377b4b4bd117e8b3dbbfe06883434b11a07e /.emacs.d/modules | |
parent | cb5ab60e80a98ba9f6625076d264aac6cd0f6158 (diff) |
emacs:(aesthetics) Update display-line-numbers key & wallpaper func
Diffstat (limited to '.emacs.d/modules')
-rw-r--r-- | .emacs.d/modules/thanos-aesthetics.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.emacs.d/modules/thanos-aesthetics.el b/.emacs.d/modules/thanos-aesthetics.el index 077d5bd..69c3bba 100644 --- a/.emacs.d/modules/thanos-aesthetics.el +++ b/.emacs.d/modules/thanos-aesthetics.el @@ -209,7 +209,6 @@ ;; UI -- Vertico, consult, marginalia (vertico-mode) (savehist-mode) -(define-key global-map (kbd "C-s") 'consult-line) (define-key global-map (kbd "C-x b") 'consult-buffer) (define-key global-map (kbd "C-c m") 'consult-imenu) @@ -246,7 +245,7 @@ (auto-insert-mode 1) (global-flycheck-mode) (global-set-key (kbd "M-.") 'xref-find-definitions) -(global-set-key (kbd "C-c l") 'display-line-numbers-mode) +(global-set-key (kbd "C-c L") 'display-line-numbers-mode) ;; wallpapers (defvar wallpapers-dir "~/wallpapers/") @@ -254,7 +253,7 @@ (defun thanos/wallpaper-set (image) "Set IMAGE as wallpaper, using feh." (call-process-shell-command - (concat "feh --bg-scale " wallpapers-dir image) nil 0)) + (concat "xwallpaper --focus " wallpapers-dir image) nil 0)) (defun thanos/wallpaper-random () "Set random wallpaper." |