From b4c47b2a8ee4adb18901decd97bfb94de61f56dd Mon Sep 17 00:00:00 2001 From: ringo de kroon Date: Thu, 18 Apr 2024 15:50:50 +0200 Subject: [PATCH] Update screenshot.sh , sway-contrib script path change --- .config/sway/scripts/screenshot.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/sway/scripts/screenshot.sh b/.config/sway/scripts/screenshot.sh index d946a21..9becddc 100644 --- a/.config/sway/scripts/screenshot.sh +++ b/.config/sway/scripts/screenshot.sh @@ -6,13 +6,13 @@ selected=$(printf '%s\n' $entries | wofi --style=$HOME/.config/wofi/style.widget case $selected in active) - /usr/share/sway/scripts/grimshot --notify save active;; + /usr/share/sway-contrib/scripts/grimshot --notify save active;; screen) - /usr/share/sway/scripts/grimshot --notify save screen;; + /usr/share/sway-contrib/scripts/grimshot --notify save screen;; output) - /usr/share/sway/scripts/grimshot --notify save output;; + /usr/share/sway-contrib/scripts/grimshot --notify save output;; area) - /usr/share/sway/scripts/grimshot --notify save area;; + /usr/share/sway-contrib/scripts/grimshot --notify save area;; window) - /usr/share/sway/scripts/grimshot --notify save window;; + /usr/share/sway-contrib/scripts/grimshot --notify save window;; esac