From 957b3a05e758907c7b5b0355aece3e1259143571 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Mon, 16 Dec 2024 18:52:37 +0000 Subject: Renamed brightnesscontrol to brightnesscontrol.sh and converted from bash to sh. --- .config/eww/scripts/brightnesscontrol | 39 -------------------------------- .config/eww/scripts/brightnesscontrol.sh | 39 ++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 39 deletions(-) delete mode 100755 .config/eww/scripts/brightnesscontrol create mode 100755 .config/eww/scripts/brightnesscontrol.sh diff --git a/.config/eww/scripts/brightnesscontrol b/.config/eww/scripts/brightnesscontrol deleted file mode 100755 index 1e8ea9f..0000000 --- a/.config/eww/scripts/brightnesscontrol +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash - -# You can call this script like this: -# brightnessControl up -# brightnessControl down - -# Script inspired by these wonderful people: -# https://github.com/dastorm/volume-notification-dunst/blob/master/volume.sh -# https://gist.github.com/sebastiencs/5d7227f388d93374cebdf72e783fbd6a - -function send_notification { - icon="/usr/share/icons/Adwaita/symbolic/status/daytime-sunrise-symbolic.svg" - brightness=$(backlight -q) - # Make the bar with the special character ─ (it's not dash -) - # https://en.wikipedia.org/wiki/Box-drawing_character - bar=$(seq -s "─" 0 $((brightness / 10 )) | sed 's/[0-9]//g') - # Send the notification - fyi -i "$icon" --hint=string:x-canonical-private-synchronous:brightness -u normal "$bar $brightness" -} - -case $1 in - up) - backlight + 4 - backlight > ~/.cache/brightness - send_notification - # canberra-gtk-play -i audio-volume-change - ;; - down) - backlight - 4 - backlight > ~/.cache/brightness - send_notification - # canberra-gtk-play -i audio-volume-change - ;; - *) - brightness=$(backlight -q) - icon="" - printf "%s" "$icon $brightness" "%" - ;; -esac diff --git a/.config/eww/scripts/brightnesscontrol.sh b/.config/eww/scripts/brightnesscontrol.sh new file mode 100755 index 0000000..69ce422 --- /dev/null +++ b/.config/eww/scripts/brightnesscontrol.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +# You can call this script like this: +# brightnessControl up +# brightnessControl down + +# Script inspired by these wonderful people: +# https://github.com/dastorm/volume-notification-dunst/blob/master/volume.sh +# https://gist.github.com/sebastiencs/5d7227f388d93374cebdf72e783fbd6a + +send_notification() { + icon="/usr/share/icons/Adwaita/symbolic/status/daytime-sunrise-symbolic.svg" + brightness=$(backlight -q) + # Make the bar with the special character ─ (it's not dash -) + # https://en.wikipedia.org/wiki/Box-drawing_character + bar=$(seq -s "─" 0 $((brightness / 10 )) | sed 's/[0-9]//g') + # Send the notification + fyi -i "$icon" --hint=string:x-canonical-private-synchronous:brightness -u normal "$bar $brightness" +} + +case $1 in + up) + backlight + 4 + backlight > ~/.cache/brightness + send_notification + # canberra-gtk-play -i audio-volume-change + ;; + down) + backlight - 4 + backlight > ~/.cache/brightness + send_notification + # canberra-gtk-play -i audio-volume-change + ;; + *) + brightness=$(backlight -q) + icon="" + printf "%s" "$icon $brightness" "%" + ;; +esac -- cgit v1.2.3