From 4eea50edb9d406ca2f2484d121c14903906ee9e4 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 20 Feb 2026 08:08:11 -0800 Subject: [PATCH] Update wallpaper source dir and fix README badge link --- dotfiles/emacs.d/README.org | 3 +-- dotfiles/lib/bin/rofi_wallpaper.sh | 2 +- nixos/imalison.nix | 2 +- nixos/xmonad.nix | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index a860bf09..915a518c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1,6 +1,5 @@ # -*- mode: org; -*- -[[https://github.com/IvanMalison/dotfiles/actions/workflows/gh-pages.yml][ -file:https://github.com/IvanMalison/dotfiles/actions/workflows/gh-pages.yml/badge.svg?branch=master]] +[[https://github.com/colonelpanic8/dotfiles/actions/workflows/gh-pages.yml][https://github.com/colonelpanic8/dotfiles/actions/workflows/gh-pages.yml/badge.svg?branch=master]] This document is best read at [[http://ivanmalison.github.io/dotfiles/]] or, of course, in emacs, as the internal links that follow are unlikely to work diff --git a/dotfiles/lib/bin/rofi_wallpaper.sh b/dotfiles/lib/bin/rofi_wallpaper.sh index ec99769d..5d43bf45 100755 --- a/dotfiles/lib/bin/rofi_wallpaper.sh +++ b/dotfiles/lib/bin/rofi_wallpaper.sh @@ -2,7 +2,7 @@ set -euo pipefail -wallpaper_dir="${WALLPAPER_DIR:-/var/lib/syncthing/sync/Wallpaper}" +wallpaper_dir="${WALLPAPER_DIR:-/var/lib/syncthing/sync/Wallpaper/use}" notify() { if command -v notify-send >/dev/null 2>&1; then diff --git a/nixos/imalison.nix b/nixos/imalison.nix index af1d8cad..a556767a 100644 --- a/nixos/imalison.nix +++ b/nixos/imalison.nix @@ -49,7 +49,7 @@ }; systemd.user.services.hyprpaper = let - wallpaperDir = "/var/lib/syncthing/sync/Wallpaper"; + wallpaperDir = "/var/lib/syncthing/sync/Wallpaper/use"; waitForWayland = pkgs.writeShellScript "wait-for-wayland" '' # Hyprpaper needs a Wayland socket. systemd "Condition*" checks are # brittle here (they skip the unit entirely, with no retry) and also diff --git a/nixos/xmonad.nix b/nixos/xmonad.nix index 32b6a4d1..5606502c 100644 --- a/nixos/xmonad.nix +++ b/nixos/xmonad.nix @@ -42,7 +42,7 @@ makeEnable config "myModules.xmonad" true { enable = true; display = "fill"; interval = "1h"; - imageDirectory = "/var/lib/syncthing/sync/Wallpaper"; + imageDirectory = "/var/lib/syncthing/sync/Wallpaper/use"; }; # This service uses feh (X11), so don't run it in Wayland sessions. systemd.user.services.random-background.Unit.ConditionEnvironment = "IMALISON_SESSION_TYPE=x11";