From 66447d52a793e6007e2195cde3ac267fe1d60b98 Mon Sep 17 00:00:00 2001 From: Xerillic Date: Tue, 12 Sep 2023 20:58:37 -0400 Subject: [PATCH] wallpaper plugin: add ability to set wallpaper for specific monitors using nitrogen --- plugins/wallpaper | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/plugins/wallpaper b/plugins/wallpaper index 2017fbd4..79583aa0 100755 --- a/plugins/wallpaper +++ b/plugins/wallpaper @@ -8,11 +8,25 @@ # Shell: POSIX compliant # Author: juacq97 +selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection} +resp= + +add_file () +{ + printf '%s\0' "$@" >> "$selection" +} + if [ -n "$1" ]; then if [ "$(file --mime-type "$1" | awk '{print $NF}' | awk -F '/' '{print $1}')" = "image" ]; then if [ "$XDG_SESSION_TYPE" = "x11" ]; then if type nitrogen >/dev/null 2>&1; then - nitrogen --set-zoom-fill --save "$1" + printf "Set to full desktop or a specific monitors? [0, 1, etc. Defaults to full.]" + read -r resp + if [ "$resp" != "" ]; then + nitrogen --set-zoom-fill --save "$1" --head="$resp" + else + nitrogen --set-zoom-fill --save "$1" + fi elif type wal >/dev/null 2>&1; then wal -i "$1" else -- 2.44.0