From b68701e2def4eb56df367f484d43201c5479e19d Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Thu, 15 Jan 2026 23:00:26 +0100 Subject: feat: replace install script with Makefile --- install | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 install (limited to 'install') diff --git a/install b/install deleted file mode 100755 index 294dcfd..0000000 --- a/install +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -programs="dwm dmenu slstatus st fetcha" - -command_exists() { - command -v "$1" >/dev/null 2>&1 -} - -if [ "$(id -u)" -eq 0 ] || [ -n "$SUDO_UID" ]; then - read -p "Install laptop configuration instead of desktop? [y/N] " laptop - if [ "$laptop" = "y" ] || [ "$laptop" = "Y" ]; then - git apply laptop.diff - fi - - for program in $programs; do - (cd "$program" && echo "Starting $program installation" && make -s clean install && echo "$program installation complete" && make -s clean) - done - - git restore . - - if command_exists picom; then - echo "Copying picom configuration" - cp picom.conf /etc/xdg/picom.conf - fi -else - echo "No root permissions, skipping installation of suckless programs and picom config" -fi - - -if command_exists feh; then - echo "Creating ~/.fehbg" - echo '#!/bin/sh' > ~/.fehbg - echo "feh --no-fehbg --bg-fill $(pwd)/wallpaper.jpg" >> ~/.fehbg - chmod 755 ~/.fehbg -fi -- cgit v1.2.3