Adjusted project to better accomodate for non-FHS-compliant systems

This commit is contained in:
2026-04-10 15:49:26 +02:00
parent 7a6203a77b
commit 296dc33ae4
2 changed files with 69 additions and 17 deletions

View File

@@ -1,9 +1,9 @@
#ifndef MACROS_H
#define MACROS_H
#define HYPRCTL_BINARY "/usr/bin/hyprctl"
#define HYPRCTL_BINARY "hyprctl"
#define NULL_PATH "/dev/null"
#define ECHO_PATH "/usr/bin/echo"
#define CAT_PATH "/usr/bin/cat"
#define ECHO_PATH "echo"
#define CAT_PATH "cat"
#endif
#endif