From 4a7e1e6c5a4f52ad34b06ecaf813b778f57d2d08 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Sat, 4 May 2019 01:51:37 -0400 Subject: [PATCH] Added rofi config. Its pretty empty --- rofi/config | 1 + rofi/makefile | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 rofi/config create mode 100644 rofi/makefile 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)