commit 15be5d418cee9b108bad8fdaba534388d841e47a
parent 652370e29dfe59b2a743ec403eff56c78d62438e
Author: regexghost <dev@regexghost.com>
Date: Sun, 19 Jul 2026 16:04:24 +0100
python venv in init.sh
Diffstat:
4 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/apt-install.sh b/apt-install.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-sudo apt install curl wget golang xorg xinit x11-xserver-utils bluetooth unzip git firefox-esr mpv vlc tar moc fasd fonts-roboto fonts-firacode figlet jq xcompmgr picom trash-cli ncdu pulsemixer feh moc-ffmpeg-plugin keepassxc-full fzf libnotify-bin dunst texinfo xmlstarlet duf gh tidy w3m bluetooth xclip wbritish wbritish-huge rsync pup rename ifuse libimobiledevice-utils chromium groff xdotool pulseaudio-module-bluetooth sqlite3 expect aria2 gammastep qimgv kimageformat-plugins kimageformat6-plugins nomacs mediainfo mpd mpc htop
+sudo apt install curl wget golang xorg xinit x11-xserver-utils bluetooth unzip git firefox-esr mpv vlc tar moc fasd fonts-roboto fonts-firacode figlet jq xcompmgr picom trash-cli ncdu pulsemixer feh moc-ffmpeg-plugin keepassxc-full fzf libnotify-bin dunst texinfo xmlstarlet duf gh tidy w3m bluetooth xclip wbritish wbritish-huge rsync pup rename ifuse libimobiledevice-utils chromium groff xdotool pulseaudio-module-bluetooth sqlite3 expect aria2 gammastep qimgv kimageformat-plugins kimageformat6-plugins nomacs mediainfo mpd mpc htop python3-venv
diff --git a/init.sh b/init.sh
@@ -43,3 +43,8 @@ touch ~/Videos/Podcasts/toDownload.txt
mkdir ~/.local/state/mpd
mkdir ~/.cache/mpd
+
+cd ~/.local/share/regexghost
+python3 -m venv .venv
+~/.local/share/regexghost/.venv/bin/pip install music-tag pillow requests
+beautifulsoup4
diff --git a/panel-scripts/music-moc.sh b/panel-scripts/music-moc.sh
@@ -11,7 +11,7 @@ mocp_command="mocp -M $XDG_CONFIG_HOME/moc"
ping_panel () {
barpid="$(cat ~/.cache/bar_pid)"
if ! [ "$barpid" = "" ]; then
- kill -35 "$barpid"
+ /usr/bin/kill -35 "$barpid"
fi
}
diff --git a/terminal-scripts/tag-song.sh b/terminal-scripts/tag-song.sh
@@ -1,5 +1,10 @@
#!/usr/bin/env bash
+if [ "$1" = "-h" ]; then
+ echo "tag-song <genre> <amID/file.jpg> <files>*"
+ exit
+fi
+
genre="$1"
appleMusicID="$2"
shift