regexghost-dotfiles

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

commit 6bcf81a7bfa39de63c3cd05dfdf965c9eb6f9e59
parent 85104bcda99cab1d41fb65446101157edd6dfba7
Author: regexghost <regexghost@protonmail.com>
Date:   Mon,  4 May 2026 13:38:17 +0100

added makefile for panel scripts

Diffstat:
A.gitignore | 4++++
Apanel-scripts/Makefile | 10++++++++++
2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,4 @@ +panel-scripts/uptime +panel-scripts/network_down +panel-scripts/network_up +panel-scripts/cpu diff --git a/panel-scripts/Makefile b/panel-scripts/Makefile @@ -0,0 +1,10 @@ +PREFIX="${XDG_DATA_HOME}/regexghost/panel/" + +normal: + mkdir -p ${PREFIX}/panel + gcc -o cpu cpu.c + gcc -o network_up network.c -D UP_SPEED + gcc -o network_down network.c + cp sunrise.sh ${PREFIX}/sunrise.sh + gcc -o uptime uptime.c + mv cpu network_up network_down uptime ${PREFIX}/