mirror of https://github.com/tiyn/dotfiles
parent
f662768a04
commit
0ef1b10781
@ -1,30 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
Device="Audio Adapter (Unitek Y-247A) Mono"
|
|
||||||
|
|
||||||
Name=$(wpctl status | grep "$Device")
|
|
||||||
Id=$( echo $Name | cut -d '.' -f 1 | cut -c 5-)
|
|
||||||
Node=$(wpctl inspect $Id | grep node.name | cut -d '=' -f 2)
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start) wpctl set-volume $Id 0.2
|
|
||||||
touch ~/.local/state/loopback.lock
|
|
||||||
pw-loopback -C $Node & ;;
|
|
||||||
stop) killall pw-loopback
|
|
||||||
rm ~/.local/state/loopback.lock ;;
|
|
||||||
toggle)
|
|
||||||
if [ -f ~/.local/state/loopback.lock ]; then
|
|
||||||
loopback stop
|
|
||||||
else
|
|
||||||
loopback start
|
|
||||||
fi ;;
|
|
||||||
*) cat << EOF
|
|
||||||
loopback: cli audio script for looping back pulse devices to the default output.
|
|
||||||
|
|
||||||
Allowed options:
|
|
||||||
start Start loopback for device
|
|
||||||
stop Stop all active loopbacks
|
|
||||||
toggle Start or stop loopback depending if it is already running
|
|
||||||
|
|
||||||
EOF
|
|
||||||
esac
|
|
@ -1,13 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Based on a script by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
|
||||||
|
|
||||||
bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/lock"
|
|
||||||
|
|
||||||
|
|
||||||
trueloc="$(readlink -f "$1")" &&
|
|
||||||
case "$(file --mime-type -b "$trueloc")" in
|
|
||||||
image/* ) ln -f "$(readlink -f "$1")" "$bgloc" && notify-send -i "$bgloc" "Changing lock background..." ;;
|
|
||||||
inode/directory ) ln -f "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && notify-send -i "$bgloc" "Random lock background chosen." ;;
|
|
||||||
*) notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;;
|
|
||||||
esac
|
|
@ -1,15 +1,33 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Based on a script by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
# Adapted from a script by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
||||||
|
|
||||||
bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/bg"
|
case "$1" in
|
||||||
|
desktop) bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/bg"
|
||||||
|
trueloc="$(readlink -f "$2")" &&
|
||||||
trueloc="$(readlink -f "$1")" &&
|
|
||||||
case "$(file --mime-type -b "$trueloc")" in
|
case "$(file --mime-type -b "$trueloc")" in
|
||||||
image/* ) ln -f "$(readlink -f "$1")" "$bgloc" && notify-send -i "$bgloc" "Changing wallpaper..." ;;
|
image/* ) ln -f "$(readlink -f "$2")" "$bgloc" && notify-send -i "$bgloc" "Desktop wallpaper has been changed." ;;
|
||||||
inode/directory ) ln -f "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && notify-send -i "$bgloc" "Random Wallpaper chosen." ;;
|
inode/directory ) ln -f "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && notify-send -i "$bgloc" "Random desktop wallpaper chosen." ;;
|
||||||
*) notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;;
|
*) notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;;
|
||||||
esac
|
esac
|
||||||
|
xwallpaper --zoom "$bgloc" ;;
|
||||||
|
lock) bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/lock"
|
||||||
|
trueloc="$(readlink -f "$2")" &&
|
||||||
|
case "$(file --mime-type -b "$trueloc")" in
|
||||||
|
image/* ) ln -f "$(readlink -f "$2")" "$bgloc" && notify-send -i "$bgloc" "Lock screen wallpaper has been changed." ;;
|
||||||
|
inode/directory ) ln -f "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && notify-send -i "$bgloc" "Random lock screen wallpaper chosen." ;;
|
||||||
|
*) notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;;
|
||||||
|
esac ;;
|
||||||
|
*) cat << EOF
|
||||||
|
wallpaper: cli script to set and reset the wallpaper of the desktop and lock
|
||||||
|
screen.
|
||||||
|
|
||||||
|
Allowed options:
|
||||||
|
desktop [PATH] Set the wallpaper of the desktop to the specified path.
|
||||||
|
If no path is given reset it.
|
||||||
|
lock [PATH] Set the wallpaper of the lock screen to the specified path.
|
||||||
|
If no path is given reset it.
|
||||||
|
all else Print this message
|
||||||
|
|
||||||
xwallpaper --zoom "$bgloc"
|
EOF
|
||||||
|
esac
|
||||||
|
Loading…
Reference in new issue