diff options
author | Thanos Apollo <[email protected]> | 2024-01-18 17:05:23 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-18 17:05:23 +0200 |
commit | 78e5f43ebb797d068e05c8fbd36b2165a5e8258f (patch) | |
tree | 5c6b1248167720a8d12b7b7de79984ba4011d605 /.emacs.d | |
parent | 52f506670a74603d6f8198dde9f576325f14d900 (diff) |
emacs:(commands) Update thanos/wallpaper-set
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/modules/thanos-commands.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/modules/thanos-commands.el b/.emacs.d/modules/thanos-commands.el index 86814ed..da5b4ae 100644 --- a/.emacs.d/modules/thanos-commands.el +++ b/.emacs.d/modules/thanos-commands.el @@ -113,7 +113,10 @@ (defun thanos/wallpaper-set (image) "Set IMAGE as wallpaper, using feh." (call-process-shell-command - (concat "xwallpaper --focus " wallpapers-dir image) nil 0)) + (concat (if is-zeus "xwallpaper --output DisplayPort-1 --stretch " + "xwallpaper --focus ") + wallpapers-dir image) + nil 0)) (defun thanos/wallpaper-random () "Set random wallpaper." |