[NEW] sway: Add Sway Wayland compositor config

This commit is contained in:
Andrea Rogers 2024-04-30 01:32:40 -05:00
commit af5f96c19f
2 changed files with 247 additions and 2 deletions

View file

@ -15,12 +15,14 @@ ifeq ($(UNAME),Darwin)
OPEN = open
else ifeq ($(UNAME),FreeBSD)
DEFAULT_TARGETS += $(HOME)/.bashrc \
$(HOME)/.bashrc.freebsd
$(HOME)/.bashrc.freebsd \
$(HOME)/.sway/config
PROFILE = .profile
INSTALL = ginstall
OPEN = xdg-open
else
DEFAULT_TARGETS += $(HOME)/.bashrc
DEFAULT_TARGETS += $(HOME)/.bashrc \
$(HOME)/.sway/config
PROFILE = .profile
INSTALL = install
OPEN = xdg-open
@ -65,6 +67,9 @@ $(HOME)/.vimrc: .vimrc
$(HOME)/.vim/bundle:
mkdir -p $@
$(HOME)/.sway/config: .sway/config
$(INSTALL) -D -m 644 $< $@
$(HOME)/.vim/bundle/Vundle.vim: $(HOME)/.vim/bundle
git clone https://github.com/VundleVim/Vundle.vim.git $@ || cd $@; git pull; exit 0