dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

commit 74a5cf334bda701355145bf61a291ce61383da44
parent b2d37a1974ae15443d25bd50974768b990ea5b95
Author: regexghost <dev@regexghost.com>
Date:   Fri, 31 Jul 2026 14:00:30 +0100

ublock filters, underscore to dash in otherPrograms.sh, new retroarch cores

Diffstat:
Mguides/firefox.md | 4++++
Aother/ublock-filters.txt | 7+++++++
MotherPrograms.sh | 24++++++++++++------------
Mretroarch-setup/compile-cores.sh | 16++++++++++++++++
4 files changed, 39 insertions(+), 12 deletions(-)

diff --git a/guides/firefox.md b/guides/firefox.md @@ -15,6 +15,10 @@ https://addons.mozilla.org/en-GB/firefox/addon/vimium-ff/ Import settings from `other/redirector-config.json` +### uBlock Origin + +Import filters from `other/ublock-filters.txt` + ## Login https://www.microsoft.com/en-gb/microsoft-365/outlook/log-in diff --git a/other/ublock-filters.txt b/other/ublock-filters.txt @@ -0,0 +1,7 @@ +! 28 Jul 2026 https://www.google.com +www.google.com##div.EjQTId.YNk70c:nth-of-type(1) > .SLPe5b.Kevs9 > div +www.google.com###slim_appbar +www.google.com###oFNiHe + +! 30 Jul 2026 https://old.reddit.com +old.reddit.com##.cookie-infobar.with-btn.with-icon.updated.md-container-small.reddit-infobar diff --git a/otherPrograms.sh b/otherPrograms.sh @@ -38,7 +38,7 @@ bsky () { sudo apt install golang mkdir bsky cd bsky - url="$(github_latest_release "github" "mattn" "bsky")" + url="$(github-latest-release "github" "mattn" "bsky")" wget "$url" unzip *.zip cd */ @@ -53,7 +53,7 @@ forgejo () { rustup default stable mkdir forgejo cd forgejo - url="$(github_latest_release "codeberg" "forgejo-contrib" "forgejo-cli")" + url="$(github-latest-release "codeberg" "forgejo-contrib" "forgejo-cli")" wget "$url" unzip *.zip cd */ @@ -66,7 +66,7 @@ forgejo () { aacgain () { mkdir aacgain cd aacgain - url="$(github_latest_release "github" "dgilman" "aacgain")" + url="$(github-latest-release "github" "dgilman" "aacgain")" wget "$url" } @@ -129,7 +129,7 @@ nano () { oksh () { mkdir oksh cd oksh - url="$(github_latest_release "github" "ibara" "oksh")" + url="$(github-latest-release "github" "ibara" "oksh")" wget "$url" unzip *.zip cd */ @@ -150,7 +150,7 @@ opustags () { sudo apt install libogg-dev mkdir opustags cd opustags - url="$(github_latest_release "github" "fmang" "opustags")" + url="$(github-latest-release "github" "fmang" "opustags")" wget "$url" unzip *.zip cd */ @@ -168,7 +168,7 @@ rsgain () { sudo apt install libavcodec-dev libavformat-dev libtag-dev libebur128-dev libinih-dev libfmt-dev mkdir rsgain cd rsgain - url="$(github_latest_release "github" "complexlogic" "rsgain")" + url="$(github-latest-release "github" "complexlogic" "rsgain")" wget "$url" unzip *.zip cd */ @@ -242,7 +242,7 @@ slock () { bluetui () { mkdir bluetui cd bluetui - url="$(github_latest_release "github" "pythops" "bluetui")" + url="$(github-latest-release "github" "pythops" "bluetui")" wget "$url" unzip *.zip cd */ @@ -274,7 +274,7 @@ pipeviewer () { sudo apt install libmodule-build-perl libwww-curl-perl libjson-perl libterm-readline-gnu-perl libdata-dump-perl liblwp-protocol-https-perl libunicode-linebreak-perl mkdir pipeviewer cd pipeviewer - url="$(github_latest_release "github" "trizen" "pipe-viewer")" + url="$(github-latest-release "github" "trizen" "pipe-viewer")" wget "$url" unzip *.zip cd */ @@ -328,7 +328,7 @@ cava () { mkdir cava cd cava - url="$(github_latest_release "github" "karlstav" "cava")" + url="$(github-latest-release "github" "karlstav" "cava")" wget "$url" unzip *.zip cd */ @@ -369,7 +369,7 @@ mepo () { mkdir mepo cd mepo - url="$(github_latest_release "sourcehut" '~mil' "mepo")" + url="$(github-latest-release "sourcehut" '~mil' "mepo")" wget "$url" unzip *.zip cd */ @@ -434,7 +434,7 @@ mepo () { fastfetch () { mkdir fastfetch cd fastfetch - url="$(github_latest_release "github" "fastfetch-cli" "fastfetch")" + url="$(github-latest-release "github" "fastfetch-cli" "fastfetch")" wget "$url" unzip *.zip cd */ @@ -563,7 +563,7 @@ ueberzugpp () { mkdir ueberzugpp cd ueberzugpp - url="$(github_latest_release "github" "jstkdng" "ueberzugpp")" + url="$(github-latest-release "github" "jstkdng" "ueberzugpp")" wget "$url" unzip *.zip cd */ diff --git a/retroarch-setup/compile-cores.sh b/retroarch-setup/compile-cores.sh @@ -48,6 +48,20 @@ cp libretro-gpsp/gpsp_libretro.so "${CONFIG_LOC}/cores/" read -p "q to quit if errors" quit [ "$quit" = "q" ] && exit +./libretro-fetch.sh fceumm +JOBS=1 ./libretro-build.sh fceumm +cp libretro-fceumm/fceumm_libretro.so "${CONFIG_LOC}/cores/" + +read -p "q to quit if errors" quit +[ "$quit" = "q" ] && exit + +./libretro-fetch.sh smsplus +JOBS=1 ./libretro-build.sh smsplus +cp libretro-smsplus/smsplus_libretro.so "${CONFIG_LOC}/cores/" + +read -p "q to quit if errors" quit +[ "$quit" = "q" ] && exit + ./libretro-install.sh infofiles cp infofiles/picodrive_libretro.info "${CONFIG_LOC}/cores/" cp infofiles/nestopia_libretro.info "${CONFIG_LOC}/cores/" @@ -55,5 +69,7 @@ cp infofiles/gambatte_libretro.info "${CONFIG_LOC}/cores/" cp infofiles/stella2014_libretro.info "${CONFIG_LOC}/cores/" cp infofiles/mgba_libretro.info "${CONFIG_LOC}/cores/" cp infofiles/gpsp_libretro.info "${CONFIG_LOC}/cores/" +cp infofiles/fceumm_libretro.info "${CONFIG_LOC}/cores/" +cp infofiles/smsplus_libretro.info "${CONFIG_LOC}/cores/" cd .. cd ..