diff --git a/rofi/config b/rofi/config new file mode 100644 index 0000000..ef98614 --- /dev/null +++ b/rofi/config @@ -0,0 +1 @@ +rofi.font: FiraCode 10 diff --git a/rofi/makefile b/rofi/makefile new file mode 100644 index 0000000..11871d4 --- /dev/null +++ b/rofi/makefile @@ -0,0 +1,18 @@ +SRC := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) + +include ../lib/shared.mk +TARGET := $(XDG_DIR)/rofi + +install: | init update + +init: +ifeq ($(call cmd_exist,rofi), true) + $(info => Setting up rofi) + $(mk_link) $(SRC) $(TARGET) +endif + +update: + +remove: + $(info => Remvoing rofi) + $(rm_link) $(TARGET)