Added rofi config.

Its pretty empty
This commit is contained in:
James Patrick 2019-05-04 01:51:37 -04:00
parent 7b7ea0a5a5
commit 4a7e1e6c5a
2 changed files with 19 additions and 0 deletions

1
rofi/config Normal file
View File

@ -0,0 +1 @@
rofi.font: FiraCode 10

18
rofi/makefile Normal file
View File

@ -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)