Fixed bad XDG CONFIG value.

Not sure why I thought it would be DIR instead of HOME but I blame
poorly executed theft.
This commit is contained in:
James Patrick 2019-11-22 14:53:31 -05:00
parent 5f28729298
commit 569598683e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ return_val_truthy := && echo true || echo false
cmd_exist = $(shell (($$+commands[$1])) $(return_val_truthy) )
# Shortcut for the XDG dir if it exist. default to ~/.confg
XDG_DIR := $${XDG_CONFIG_DIR:-~/.config}
XDG_DIR := $${XDG_CONFIG_HOME:-~/.config}
# Some things will OS specific.
# With this you can use `$(IS_MAC) && echo "I'm a Mac" || echo "I'm not a Mac"`