New workspace_wallpaper.nix

This commit is contained in:
2026-02-26 17:29:35 +01:00
parent 51ff9d59fa
commit 006aee06c4
3 changed files with 441 additions and 555 deletions
+349 -387
View File
File diff suppressed because it is too large Load Diff
+46 -84
View File
@@ -1710,105 +1710,67 @@ in
workspace_wallpaper installs wpaperd and deploys your wallpaper files from the repo (./assets/conf/desktop/wallpaper/pictures/) into ~/conf/desktop/wallpaper/pictures. It also deploys the default wallpaper configuration from assets/conf/desktop/wallpaper/wallpaper.conf into ~/conf/desktop/wallpaper/wallpaper.conf, which is the file you can edit as a user override.
#+begin_src nix :tangle home/desktop/workspace_wallpaper.nix :noweb tangle :mkdirp yes
{ config, pkgs, lib, flakeRoot, ... }:
let
repoWallpaperDir = flakeRoot + "/assets/conf/desktop/wallpaper";
repoWallpaperConf = flakeRoot + "/assets/conf/desktop/wallpaper/wallpaper.conf";
userRelRoot = "nixos_conf/wallpaperstuff";
userAbsRoot = "${config.home.homeDirectory}/${userRelRoot}";
userConfPath = "${userAbsRoot}/wallpaper.conf";
userWsScriptPath = "${userAbsRoot}/wpaperd-workspace-1to9.sh";
# Exclude wallpaper.conf so HM does NOT manage it (avoids backup collisions)
repoWallpapersOnly = lib.cleanSourceWith {
src = repoWallpaperDir;
filter = path: type:
(builtins.baseNameOf path) != "wallpaper.conf";
};
wsScript = ''
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="''${1:?usage: wpaperd-workspace-1to9.sh ~/nixos_conf/wallpaperstuff/pictures}"
: "''${XDG_RUNTIME_DIR:?XDG_RUNTIME_DIR not set}"
: "''${HYPRLAND_INSTANCE_SIGNATURE:?HYPRLAND_INSTANCE_SIGNATURE not set}"
SOCK="''${XDG_RUNTIME_DIR}/hypr/''${HYPRLAND_INSTANCE_SIGNATURE}/.socket2.sock"
[[ -S "$SOCK" ]] || { echo "Hyprland socket not found: $SOCK" >&2; exit 1; }
set_for_ws() {
local ws_raw="$1"
# Hyprland workspace name may look like "1" or "1:foo" take the numeric prefix
local ws="''${ws_raw%%:*}"
[[ "$ws" =~ ^[1-9]$ ]] || return 0
local img="$ROOT_DIR/wallpaper$ws.jpg"
if [[ -f "$img" ]]; then
${pkgs.wpaperd}/bin/wpaperctl set "$img" >/dev/null 2>&1 || true
fi
}
# Apply once at start (best effort): ask hyprctl for active workspace name
if command -v ${pkgs.hyprland}/bin/hyprctl >/dev/null 2>&1; then
cur="$(${pkgs.hyprland}/bin/hyprctl activeworkspace -j 2>/dev/null | ${pkgs.jq}/bin/jq -r '.name // empty' || true)"
[[ -n "''${cur:-}" ]] && set_for_ws "$cur" || true
fi
exec ${pkgs.socat}/bin/socat -u "UNIX-CONNECT:$SOCK" - | while IFS= read -r line; do
case "$line" in
workspace\>\>*)
ws="''${line#workspace>>}"
set_for_ws "$ws"
;;
esac
done
'';
repoWallpaperDir = flakeRoot + "/assets/conf/desktop/wallpaper";
userRelRoot = "nixos_conf/wallpaperstuff";
userAbsRoot = "${config.home.homeDirectory}/${userRelRoot}";
in
{
home.packages = [
pkgs.wpaperd
pkgs.socat
pkgs.jq
pkgs.hyprland
];
# Sync everything *except* wallpaper.conf into ~/nixos_conf/wallpaperstuff
# Put wallpaper1.jpg .. wallpaper9.jpg in your repo wallpaper dir and theyll be copied here.
#################################
# Install wallpaper daemon
#################################
home.packages = [ pkgs.wpaperd ];
#################################
# Copy wallpapers from repo
#################################
home.file."${userRelRoot}" = {
source = repoWallpapersOnly;
source = repoWallpaperDir;
recursive = true;
};
# Now safely overwrite the config every activation (no HM collision)
home.activation.wallpaperConfForce =
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
set -euo pipefail
mkdir -p "${userAbsRoot}"
install -m 0644 "${repoWallpaperConf}" "${userConfPath}"
'';
# Install the listener script
home.file."${userRelRoot}/wpaperd-workspace-1to9.sh" = {
text = wsScript;
executable = true;
};
# wpaperd daemon
#################################
# Start wpaperd (no config file)
#################################
systemd.user.services.wpaperd = {
Unit = {
Description = "wpaperd wallpaper daemon";
After = [ "default.target" ];
After = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd --config ${userConfPath}";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd";
Restart = "on-failure";
RestartSec = 1;
};
Install.WantedBy = [ "default.target" ];
};
# Workspace listener: switches wallpaper when workspace changes (1..9)
systemd.user.services.wpaperd-workspace-1to9 = {
Unit = {
Description = "Set wallpaper1..9.jpg per Hyprland workspace (wpaperctl)";
After = [ "wpaperd.service" "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.bash}/bin/bash ${userWsScriptPath} ${userAbsRoot}/pictures";
Restart = "on-failure";
RestartSec = 1;
};
Install.WantedBy = [ "default.target" ];
#################################
# Hyprland workspace → wallpaper
#################################
wayland.windowManager.hyprland = {
enable = true;
extraConfig = ''
# Workspace wallpaper bindings
bind = $mainMod, 1, exec, hyprctl dispatch workspace 1 && wpaperctl set ${userAbsRoot}/wallpaper1.jpg
bind = $mainMod, 2, exec, hyprctl dispatch workspace 2 && wpaperctl set ${userAbsRoot}/wallpaper2.jpg
bind = $mainMod, 3, exec, hyprctl dispatch workspace 3 && wpaperctl set ${userAbsRoot}/wallpaper3.jpg
bind = $mainMod, 4, exec, hyprctl dispatch workspace 4 && wpaperctl set ${userAbsRoot}/wallpaper4.jpg
bind = $mainMod, 5, exec, hyprctl dispatch workspace 5 && wpaperctl set ${userAbsRoot}/wallpaper5.jpg
bind = $mainMod, 6, exec, hyprctl dispatch workspace 6 && wpaperctl set ${userAbsRoot}/wallpaper6.jpg
bind = $mainMod, 7, exec, hyprctl dispatch workspace 7 && wpaperctl set ${userAbsRoot}/wallpaper7.jpg
bind = $mainMod, 8, exec, hyprctl dispatch workspace 8 && wpaperctl set ${userAbsRoot}/wallpaper8.jpg
bind = $mainMod, 9, exec, hyprctl dispatch workspace 9 && wpaperctl set ${userAbsRoot}/wallpaper9.jpg
'';
};
}
#+end_src
@@ -1,102 +1,64 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
repoWallpaperDir = flakeRoot + "/assets/conf/desktop/wallpaper";
repoWallpaperConf = flakeRoot + "/assets/conf/desktop/wallpaper/wallpaper.conf";
userRelRoot = "nixos_conf/wallpaperstuff";
userAbsRoot = "${config.home.homeDirectory}/${userRelRoot}";
userConfPath = "${userAbsRoot}/wallpaper.conf";
userWsScriptPath = "${userAbsRoot}/wpaperd-workspace-1to9.sh";
# Exclude wallpaper.conf so HM does NOT manage it (avoids backup collisions)
repoWallpapersOnly = lib.cleanSourceWith {
src = repoWallpaperDir;
filter = path: type:
(builtins.baseNameOf path) != "wallpaper.conf";
};
wsScript = ''
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="''${1:?usage: wpaperd-workspace-1to9.sh ~/nixos_conf/wallpaperstuff/pictures}"
: "''${XDG_RUNTIME_DIR:?XDG_RUNTIME_DIR not set}"
: "''${HYPRLAND_INSTANCE_SIGNATURE:?HYPRLAND_INSTANCE_SIGNATURE not set}"
SOCK="''${XDG_RUNTIME_DIR}/hypr/''${HYPRLAND_INSTANCE_SIGNATURE}/.socket2.sock"
[[ -S "$SOCK" ]] || { echo "Hyprland socket not found: $SOCK" >&2; exit 1; }
set_for_ws() {
local ws_raw="$1"
# Hyprland workspace name may look like "1" or "1:foo" take the numeric prefix
local ws="''${ws_raw%%:*}"
[[ "$ws" =~ ^[1-9]$ ]] || return 0
local img="$ROOT_DIR/wallpaper$ws.jpg"
if [[ -f "$img" ]]; then
${pkgs.wpaperd}/bin/wpaperctl set "$img" >/dev/null 2>&1 || true
fi
}
# Apply once at start (best effort): ask hyprctl for active workspace name
if command -v ${pkgs.hyprland}/bin/hyprctl >/dev/null 2>&1; then
cur="$(${pkgs.hyprland}/bin/hyprctl activeworkspace -j 2>/dev/null | ${pkgs.jq}/bin/jq -r '.name // empty' || true)"
[[ -n "''${cur:-}" ]] && set_for_ws "$cur" || true
fi
exec ${pkgs.socat}/bin/socat -u "UNIX-CONNECT:$SOCK" - | while IFS= read -r line; do
case "$line" in
workspace\>\>*)
ws="''${line#workspace>>}"
set_for_ws "$ws"
;;
esac
done
'';
repoWallpaperDir = flakeRoot + "/assets/conf/desktop/wallpaper";
userRelRoot = "nixos_conf/wallpaperstuff";
userAbsRoot = "${config.home.homeDirectory}/${userRelRoot}";
in
{
home.packages = [
pkgs.wpaperd
pkgs.socat
pkgs.jq
pkgs.hyprland
];
# Sync everything *except* wallpaper.conf into ~/nixos_conf/wallpaperstuff
# Put wallpaper1.jpg .. wallpaper9.jpg in your repo wallpaper dir and theyll be copied here.
#################################
# Install wallpaper daemon
#################################
home.packages = [ pkgs.wpaperd ];
#################################
# Copy wallpapers from repo
#################################
home.file."${userRelRoot}" = {
source = repoWallpapersOnly;
source = repoWallpaperDir;
recursive = true;
};
# Now safely overwrite the config every activation (no HM collision)
home.activation.wallpaperConfForce =
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
set -euo pipefail
mkdir -p "${userAbsRoot}"
install -m 0644 "${repoWallpaperConf}" "${userConfPath}"
'';
# Install the listener script
home.file."${userRelRoot}/wpaperd-workspace-1to9.sh" = {
text = wsScript;
executable = true;
};
# wpaperd daemon
#################################
# Start wpaperd (no config file)
#################################
systemd.user.services.wpaperd = {
Unit = {
Description = "wpaperd wallpaper daemon";
After = [ "default.target" ];
After = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd --config ${userConfPath}";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd";
Restart = "on-failure";
RestartSec = 1;
};
Install.WantedBy = [ "default.target" ];
};
# Workspace listener: switches wallpaper when workspace changes (1..9)
systemd.user.services.wpaperd-workspace-1to9 = {
Unit = {
Description = "Set wallpaper1..9.jpg per Hyprland workspace (wpaperctl)";
After = [ "wpaperd.service" "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.bash}/bin/bash ${userWsScriptPath} ${userAbsRoot}/pictures";
Restart = "on-failure";
RestartSec = 1;
};
Install.WantedBy = [ "default.target" ];
#################################
# Hyprland workspace → wallpaper
#################################
wayland.windowManager.hyprland = {
enable = true;
extraConfig = ''
# Workspace wallpaper bindings
bind = $mainMod, 1, exec, hyprctl dispatch workspace 1 && wpaperctl set ${userAbsRoot}/wallpaper1.jpg
bind = $mainMod, 2, exec, hyprctl dispatch workspace 2 && wpaperctl set ${userAbsRoot}/wallpaper2.jpg
bind = $mainMod, 3, exec, hyprctl dispatch workspace 3 && wpaperctl set ${userAbsRoot}/wallpaper3.jpg
bind = $mainMod, 4, exec, hyprctl dispatch workspace 4 && wpaperctl set ${userAbsRoot}/wallpaper4.jpg
bind = $mainMod, 5, exec, hyprctl dispatch workspace 5 && wpaperctl set ${userAbsRoot}/wallpaper5.jpg
bind = $mainMod, 6, exec, hyprctl dispatch workspace 6 && wpaperctl set ${userAbsRoot}/wallpaper6.jpg
bind = $mainMod, 7, exec, hyprctl dispatch workspace 7 && wpaperctl set ${userAbsRoot}/wallpaper7.jpg
bind = $mainMod, 8, exec, hyprctl dispatch workspace 8 && wpaperctl set ${userAbsRoot}/wallpaper8.jpg
bind = $mainMod, 9, exec, hyprctl dispatch workspace 9 && wpaperctl set ${userAbsRoot}/wallpaper9.jpg
'';
};
}