diff --git a/.archived/rofimaim b/rofimaim similarity index 58% rename from .archived/rofimaim rename to rofimaim index ba1bbb8..fd12f32 100755 --- a/.archived/rofimaim +++ b/rofimaim @@ -7,9 +7,9 @@ # This is lifted from https://gitlab.com/vahnrr/rofi-menus and modified by # hyperreal on 2023-09-06T15:09:58-05:00 -save_location="${HOME}/screenshots" -if ! test -d "${HOME}/screenshots"; then - mkdir "${HOME}/screenshots" +save_location="${HOME}/sync/pictures/screenshots" +if ! test -d "${HOME}/sync/pictures/screenshots"; then + mkdir "${HOME}/sync/pictures/screenshots" fi screenshot_path="$save_location/$(date +'%Y-%m-%d-%H%M%S').png" @@ -17,18 +17,18 @@ screen=' Screen' area=' Select area' window=' Window' -chosen=$(printf '%s;%s;%s' "$screen" "$area" "$window" \ - | rofi -theme-str 'window { width: 10em; height: 10em; }' \ - -P 'Screenshot' \ - -dmenu \ - -sep ';' \ - -selected-row 1) +chosen=$(printf '%s;%s;%s' "$screen" "$area" "$window" | + rofi -theme-str 'window { width: 10em; height: 10em; }' \ + -P 'Screenshot' \ + -dmenu \ + -sep ';' \ + -selected-row 1) case "$chosen" in - "$screen") extra_args='--delay=1' ;; - "$area") extra_args='--delay=0.1 --select --highlight --color=0.85,0.87,0.91,0.2' ;; - "$window") extra_args="--delay=1 --window=$(xdotool getactivewindow)" ;; - *) exit 1 ;; +"$screen") extra_args='--delay=1' ;; +"$area") extra_args='--delay=0.1 --select --highlight --color=0.85,0.87,0.91,0.2' ;; +"$window") extra_args="--delay=1 --window=$(xdotool getactivewindow)" ;; +*) exit 1 ;; esac # The variable is used as a command's options, so it shouldn't be quoted.