mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-21 16:19:36 +01:00
Add custom scripts
This commit is contained in:
parent
897ffc6d1a
commit
523d3f72ac
9
scripts/toggle-monitor
Executable file
9
scripts/toggle-monitor
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
monitor=$(hyprctl -j monitors | jq '.[] | select(.name == "eDP-1") | .id')
|
||||
|
||||
if [[ $monitor == "" ]]; then
|
||||
hyprctl keyword monitor eDP-1,preferred,0x1107,2.0
|
||||
else
|
||||
hyprctl keyword monitor eDP-1,disable
|
||||
fi
|
59
scripts/volume
Executable file
59
scripts/volume
Executable file
@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
|
||||
VOLUME_STEP=2
|
||||
|
||||
# Function to check if the audio is currently muted
|
||||
is_muted() {
|
||||
amixer sget Master | grep -q "\[off\]"
|
||||
}
|
||||
|
||||
# Function to toggle mute status
|
||||
toggle_mute() {
|
||||
amixer sset Master toggle
|
||||
}
|
||||
|
||||
# Function to increase volume
|
||||
increase_volume() {
|
||||
amixer sset Master "${VOLUME_STEP}%+"
|
||||
}
|
||||
|
||||
# Function to decrease volume
|
||||
decrease_volume() {
|
||||
amixer sset Master "${VOLUME_STEP}%-"
|
||||
}
|
||||
|
||||
# Main function
|
||||
main() {
|
||||
case "$1" in
|
||||
"up")
|
||||
if is_muted; then
|
||||
toggle_mute
|
||||
fi
|
||||
increase_volume
|
||||
;;
|
||||
"down")
|
||||
if is_muted; then
|
||||
toggle_mute
|
||||
fi
|
||||
decrease_volume
|
||||
;;
|
||||
"toggle-mute")
|
||||
toggle_mute
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {up|down|toggle-mute}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Display the current volume
|
||||
amixer get Master | grep -oE "[0-9]+%"
|
||||
}
|
||||
|
||||
# Check if an argument is provided
|
||||
if [ $# -eq 1 ]; then
|
||||
main "$1"
|
||||
else
|
||||
echo "Usage: $0 {up|down|toggle-mute}"
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in New Issue
Block a user