1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

scripts: cleaned up scripts and refined volume script

This commit is contained in:
2023-10-13 23:24:38 +02:00
parent b14a6f31cb
commit a51b50849f
5 changed files with 15 additions and 31 deletions

View File

@@ -1,23 +0,0 @@
#!/bin/sh
# A general audio interface for LARBS.
# by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
[ -z "$2" ] && num="2" || num="$2"
case "$1" in
u*) pulsemixer --change-volume +"$num" ;;
d*) pulsemixer --change-volume -"$num" ;;
m*) pulsemixer --toggle-mute ;;
*) cat << EOF
lmc: cli music interface for pulse for those with divine intellect too
grand to remember the pamixer commands.
Allowed options:
up NUM Increase volume (2 secs default)
down NUM Decrease volume (2 secs default)
mute Toggle mute
all else Print this message
EOF
esac

View File

@@ -1,22 +0,0 @@
#!/bin/sh
# Gives a dmenu prompt to search Startpage.
# Without input, will open Startpage.com.
# URLs will be directly handed to the browser.
# Anything else, it search it.
# original by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
pgrep -x dmenu && exit
choice=$(echo "Startpage" | dmenu -i -p "Search Startpage:") || exit 1
if [ "$choice" = "Startpage" ]; then
$BROWSER "https://startpage.com"
else
if echo "$choice" | grep "^(http:\/\/|https:\/\/)?[a-zA-Z0-9]+\.[a-zA-Z]+(/)?.*$"; then
$BROWSER "$choice"
else
$BROWSER "https://startpage.com/do/search/?q=$choice"
fi
fi

View File

@@ -1,7 +0,0 @@
#!/bin/bash
# Toggle touchpad. Requires xf86-input-synaptics.
# by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
(synclient | grep "TouchpadOff.*1" && synclient TouchpadOff=0)>/dev/null && notify-send "TouchPad reactivated." && exit
synclient TouchpadOff=1 && notify-send "TouchPad deactivated."