diff options
author | Julian T <julian@jtle.dk> | 2021-04-05 11:30:32 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-04-05 11:30:32 +0200 |
commit | 12c708db26e60c6563a789fa01099aedb3080912 (patch) | |
tree | 05474ad3af76226f25952b24e8a3791b519d052b /scripts | |
parent | 1e2b07b971cc136e3f739d94888a5bd5fc1c594a (diff) |
Changes to i3 and tools
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/Scripts/screentool | 4 | ||||
-rwxr-xr-x | scripts/Scripts/volume | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Scripts/screentool b/scripts/Scripts/screentool index 2d8da9e..9e41fd7 100755 --- a/scripts/Scripts/screentool +++ b/scripts/Scripts/screentool @@ -21,9 +21,9 @@ if [ "$action" = "off" ]; then fi # Get position -where=$(printf "left-of\nright-of\nbelow\nabove\nnone" | $DMENU -p "position") +where=$(printf "left-of\nright-of\nbelow\nabove\nsame" | $DMENU -p "position") -if [ "$where" = "none" ]; then +if [ "$where" = "same" ]; then set -x $XRANDR --output $chosen --auto exit 0 diff --git a/scripts/Scripts/volume b/scripts/Scripts/volume index 105be1e..68e7bde 100755 --- a/scripts/Scripts/volume +++ b/scripts/Scripts/volume @@ -8,7 +8,7 @@ case $1 in pacmd set-source-volume @DEFAULT_SOURCE@ 0 ;; softunmute) - pacmd set-source-volume @DEFAULT_SOURCE@ 38000 + pacmd set-source-volume @DEFAULT_SOURCE@ 50000 ;; volumedown) pactl set-sink-volume @DEFAULT_SINK@ -5% |