birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5f3cbdaba1ae171107bec348e7e077dc18b10e5c
parent 2fdccaec3ea02358402547115c05512e88f1e064
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date:   Sun, 17 Mar 2024 16:30:56 -0400

move .dwm copy command in Install target in Makefile to the top of the target

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -38,6 +38,7 @@ dist: clean rm -rf dwm-${VERSION} install: all + cp -r .dwm ${HOME}/.config/birdwm mkdir -p ${DESTDIR}${PREFIX}/bin cp -f dwm ${DESTDIR}${PREFIX}/bin chmod 755 ${DESTDIR}${PREFIX}/bin/dwm @@ -49,7 +50,6 @@ install: all cp -f extras/volume.sh ${DESTDIR}${PREFIX}/bin cp -f extras/restarter ${DESTDIR}${PREFIX}/bin chmod 755 ${DESTDIR}${PREFIX}/bin/volume.sh - cp -r .dwm ${HOME}/.config/birdwm uninstall: rm -f ${DESTDIR}${PREFIX}/bin/dwm\