My initial DWM changes

This commit is contained in:
Alex Kotov 2021-11-12 13:42:58 +05:00
parent a786211d6c
commit 6b93cd5f7b
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
6 changed files with 32 additions and 6 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.o
/dwm
/dwm-*.tar.gz

View File

@ -19,9 +19,6 @@ options:
${OBJ}: config.h config.mk
config.h:
cp config.def.h $@
dwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}
@ -40,12 +37,25 @@ install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f dwm ${DESTDIR}${PREFIX}/bin
chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
mkdir -p ${DESTDIR}${MANPREFIX}/man1
sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
xinstall: install
mkdir -p ${DESTDIR}${ICONSPREFIX}
cp -f dwm.png ${DESTDIR}${ICONSPREFIX}
chmod 644 ${DESTDIR}${ICONSPREFIX}/dwm.png
mkdir -p ${DESTDIR}${XSESSIONSPREFIX}
cp -f dwm.desktop ${DESTDIR}${XSESSIONSPREFIX}
chmod 644 ${DESTDIR}${XSESSIONSPREFIX}/dwm.desktop
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
${DESTDIR}${MANPREFIX}/man1/dwm.1
rm -f \
${DESTDIR}${PREFIX}/bin/dwm \
${DESTDIR}${MANPREFIX}/man1/dwm.1 \
${DESTDIR}${ICONSPREFIX}/dwm.png \
${DESTDIR}${XSESSIONSPREFIX}/dwm.desktop
.PHONY: all options clean dist install uninstall

View File

@ -28,7 +28,6 @@ static const Rule rules[] = {
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
};
/* layout(s) */

1
config.h Symbolic link
View File

@ -0,0 +1 @@
config.def.h

View File

@ -5,8 +5,13 @@ VERSION = 6.2
# paths
PREFIX = /usr/local
SYSPREFIX = /usr
MANPREFIX = ${PREFIX}/share/man
ICONSPREFIX = ${SYSPREFIX}/share/icons
XSESSIONSPREFIX = ${SYSPREFIX}/share/xsessions
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

7
dwm.desktop Normal file
View File

@ -0,0 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=dwm
Comment=Dynamic Window Manager
Exec=dwm
Icon=dwm
Type=XSession