various scripts were not sourcing the common include script yet (noted by mrrabbit1155)
This commit is contained in:
parent
d71c11d993
commit
295af30993
25 changed files with 119 additions and 0 deletions
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
DIR="$1"
|
||||
[ -z "$DIR" ] && DIR="/home/$USER/"
|
||||
cd "$DIR" || exit 1
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
[ -z "$SXMO_RECDIR" ] && SXMO_RECDIR="$XDG_DATA_HOME"/sxmo/recordings
|
||||
mkdir -p "$SXMO_RECDIR"
|
||||
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
[ -z "$SXMO_SUBREDDITS" ] && SXMO_SUBREDDITS="pine64official pinephoneofficial unixporn postmarketos linux"
|
||||
|
||||
menu() {
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
FETCHENABLED=1
|
||||
|
||||
if [ -f "$XDG_CONFIG_HOME/sxmo/sfeedrc" ]; then
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
timerrun() {
|
||||
TIME=$(
|
||||
echo "$@" |
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
[ -z "$SXMO_GPSLOCATIONSFILES" ] && SXMO_GPSLOCATIONSFILES="/usr/share/sxmo/appcfg/places_for_gps.tsv"
|
||||
ROWHOURS=12
|
||||
WEATHERXML=""
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
pidof "$KEYBOARD" || "$KEYBOARD" &
|
||||
SEARCHQUERY="$(
|
||||
echo "Close Menu" | dmenu -t -p "Search:" -c -l 20
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# include common definitions
|
||||
# shellcheck source=scripts/core/sxmo_common.sh
|
||||
. "$(dirname "$0")/sxmo_common.sh"
|
||||
|
||||
HISTORY_FILE="$XDG_CACHE_HOME"/sxmo/youtubehistory.tsv
|
||||
NRESULTS=5
|
||||
AUDIOONLY=0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue