From ba19da5ff2bed053b04064047f0d7f278fa82712 Mon Sep 17 00:00:00 2001 From: speedie Date: Thu, 10 Nov 2022 20:58:17 +0100 Subject: [PATCH] update --- src/speedwm-applist | 1 + src/speedwm-audioctrl | 3 +++ src/speedwm-core | 7 +++---- src/speedwm-debug | 4 ++++ 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/speedwm-applist b/src/speedwm-applist index 19297fd..548fdc9 100755 --- a/src/speedwm-applist +++ b/src/speedwm-applist @@ -1,6 +1,7 @@ #!/bin/sh # speedwm-applist # list extra applications +# license: gplv3 # rl case "$RUNLAUNCHER" in diff --git a/src/speedwm-audioctrl b/src/speedwm-audioctrl index d158571..e075385 100755 --- a/src/speedwm-audioctrl +++ b/src/speedwm-audioctrl @@ -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))/" diff --git a/src/speedwm-core b/src/speedwm-core index 4274360..0ae09df 100755 --- a/src/speedwm-core +++ b/src/speedwm-core @@ -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 diff --git a/src/speedwm-debug b/src/speedwm-debug index aa52396..eee8768 100755 --- a/src/speedwm-debug +++ b/src/speedwm-debug @@ -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