From: Xerillic Date: Wed, 13 Sep 2023 00:58:37 +0000 (-0400) Subject: wallpaper plugin: add ability to set wallpaper for specific monitors using nitrogen X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=66447d52a793e6007e2195cde3ac267fe1d60b98;p=nnn.git wallpaper plugin: add ability to set wallpaper for specific monitors using nitrogen --- 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