diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-25 20:40:19 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-25 20:40:19 +0100 |
| commit | e7ddac3bcc836bd0e3331bb3f7823719a97ea329 (patch) | |
| tree | 81edd84c7c3d74d08fe0ea424e5511c9ddabeaf7 | |
| parent | 1588062e0df5f280ad5d2411a9dca4ff337001de (diff) | |
fix makefile install
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | dmenu-wl.c | 1 |
2 files changed, 2 insertions, 3 deletions
@@ -41,9 +41,9 @@ dmenu-wl: ${OBJ} install: default_target mkdir -p ${DESTDIR}${PREFIX}/bin install dmenu-wl dmenu_path dmenu-wl_run ${DESTDIR}${PREFIX}/bin - chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu + chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu-wl chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_path - chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_run + chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu-wl_run uninstall: rm -f ${DESTDIR}${PREFIX}/bin/dmenu-wl \ @@ -567,7 +567,6 @@ setup() wl_registry_add_listener(client.registry, ®istry_listnener, &client); wl_display_roundtrip(client.display); - for (mon = monitors; mon; mon = mon->next) { mon->dwl_output = zdwl_manager_v1_get_output(client.dwl_manager, mon->output); zdwl_output_v1_add_listener(mon->dwl_output, &dwl_output_listener, mon); |