This commit is contained in:
speedie 2022-11-10 20:58:17 +01:00
parent 3fdc43a5da
commit ba19da5ff2
4 changed files with 11 additions and 4 deletions

View file

@ -1,6 +1,7 @@
#!/bin/sh
# speedwm-applist
# list extra applications
# license: gplv3
# rl
case "$RUNLAUNCHER" in

View file

@ -3,6 +3,9 @@
# This simple shell script handles audio controls for speedwm.
# Run speedwm-audioctrl -help for more information!
# License: GPLv3.
#
# Requires pactl for pulseaudio/pipewire or amixer for alsa
# Additionally requires pulsemixer for pulseaudio/pipewire or alsamixer for alsa if the mixer functionality is used
BINDIR="$(dirname $(command -v speedwm-core))/"

View file

@ -1,10 +1,9 @@
#!/bin/sh
# speedwm-core
# This script handles the updating and other things necessary for keybinds.
# this script is used to run stuff
BINDIR="$(dirname $(command -v speedwm-core))/"
OPT=$1
case "$OPT" in
"-curl-weather") clear ; curl -s wttr.in | head -n 38 | tail -n 37 && sleep 60 ;;
case "$1" in
"-curl-weather") clear ; curl -s wttr.in | head -n 38 | tail -n 37 && read a ;;
esac

View file

@ -1,5 +1,9 @@
#!/bin/sh
# speedwm-debug
# script to debug speedwm in xephyr
# license: gplv3
# xephyr is not installed
install_xephyr() {
echo "Xephyr not installed, please install it."
exit 1