summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/modules/thanos-aesthetics.el5
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."