Small fixes

This commit is contained in:
Aleksey Samoilov 2023-09-01 15:57:51 +04:00
parent 3491912442
commit 271f0fd124
3 changed files with 4 additions and 7 deletions

View file

@ -18,9 +18,6 @@ brightness_bar="/usr/share/river/scripts/brightness-notify.sh"
# Screenshot notify # Screenshot notify
screenshot_notify="eval [[ $(wl-paste -l) == "image/png" ]] && notify-send 'Screenshot copied to clipboard'" screenshot_notify="eval [[ $(wl-paste -l) == "image/png" ]] && notify-send 'Screenshot copied to clipboard'"
# Calculate step to change brightness
brightness_step="echo $(( $(light -Mr) / 100 * 5 < 1 ? 1 : $(( $(light -Mr) / 100 * 5 )) ))"
# Screenshot scripts # Screenshot scripts
riverctl map normal "None" Print spawn "/usr/bin/river-grimshot save screen - | swappy -f - && bash -c $screenshot_notify" riverctl map normal "None" Print spawn "/usr/bin/river-grimshot save screen - | swappy -f - && bash -c $screenshot_notify"
riverctl map normal "$mod" Print spawn "/usr/bin/river-grimshot save area - | swappy -f - && bash -c $screenshot_notify" riverctl map normal "$mod" Print spawn "/usr/bin/river-grimshot save area - | swappy -f - && bash -c $screenshot_notify"
@ -156,8 +153,8 @@ do
riverctl map $mode None XF86AudioNext spawn 'playerctl next' riverctl map $mode None XF86AudioNext spawn 'playerctl next'
# Control screen backlight brightness with light (https://github.com/haikarainen/light) # Control screen backlight brightness with light (https://github.com/haikarainen/light)
riverctl map $mode None XF86MonBrightnessUp spawn "light -r -A $($brightness_step) && $brightness_bar" riverctl map $mode None XF86MonBrightnessUp spawn "light -A 5 && $brightness_bar"
riverctl map $mode None XF86MonBrightnessDown spawn "light -r -U $($brightness_step) && $brightness_bar" riverctl map $mode None XF86MonBrightnessDown spawn "light -U 5 && $brightness_bar"
done done
# Set keyboard repeat rate # Set keyboard repeat rate

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
VALUE=$(light -G | cut -d'.' -f1) VALUE=$(light -G | cut -d'.' -f1)
TEXT="Brightness: ${VALUE}%" TEXT="Brightness: ${VALUE}%"

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
set -e set -e
DIR=${XDG_PICTURES_DIR:-$HOME/Pictures} DIR=${XDG_PICTURES_DIR:-$HOME/Pictures}