regexghost-dotfiles

My dotfiles and scripts
git clone git@git.regexghost.com/regexghost-dotfiles.git
Log | Files | Refs | README

commit d69d0b0bebb245b5f4adbd7878c6c8d1341508b0
parent 6bcf81a7bfa39de63c3cd05dfdf965c9eb6f9e59
Author: regexghost <regexghost@protonmail.com>
Date:   Mon,  4 May 2026 13:46:05 +0100

added more makefiles

Diffstat:
Mpanel-scripts/Makefile | 2+-
Aterminal-scripts/Makefile | 12++++++++++++
Rterminal-scripts/heic-to-jpg.sh -> terminal-scripts/heic_to_jpg.sh | 0
Awm-scripts/Makefile | 5+++++
4 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/panel-scripts/Makefile b/panel-scripts/Makefile @@ -1,7 +1,7 @@ PREFIX="${XDG_DATA_HOME}/regexghost/panel/" normal: - mkdir -p ${PREFIX}/panel + mkdir -p ${PREFIX} gcc -o cpu cpu.c gcc -o network_up network.c -D UP_SPEED gcc -o network_down network.c diff --git a/terminal-scripts/Makefile b/terminal-scripts/Makefile @@ -0,0 +1,12 @@ +BIN="${HOME}/.local/bin" + +normal: + mkdir -p ${BIN} + cp cmpfolder.sh ${BIN}/cmpfolder + cp hashfolder.sh ${BIN}/hashfolder + gcc -o directory_bookmarks directory_bookmarks.c + mv directory_bookmarks ${BIN}/directory_bookmarks + cp github_latest_release.sh ${BIN}/github_latest_release + cp heic_to_jpg.sh ${BIN}/heictojpg + go build -o tablealigner tablealigner.go + mv tablealigner ${BIN}/tablealigner diff --git a/terminal-scripts/heic-to-jpg.sh b/terminal-scripts/heic_to_jpg.sh diff --git a/wm-scripts/Makefile b/wm-scripts/Makefile @@ -0,0 +1,5 @@ +PREFIX="${XDG_DATA_HOME}/regexghost/wm-scripts" + +normal: + mkdir -p ${PREFIX} + cp altgrtosuper.sh ${PREFIX}/altgrtosuper.sh