1
0

sway config

This commit is contained in:
dtb
2024-05-06 00:33:34 -06:00
parent 81084e0b27
commit 468b6021a9
2 changed files with 94 additions and 23 deletions

View File

@@ -6,13 +6,9 @@ all: $(TARGETS)
TARGETS = \
$(HOME)/.aliases \
$(HOME)/.config/bspwm/bspwmrc \
$(HOME)/.config/helix/config.toml \
$(HOME)/.config/helix/themes/trinity.toml \
$(HOME)/.config/nvim/init.vim \
$(HOME)/.config/sxhkd/sxhkdrc \
$(HOME)/.config/sxmo/profile \
$(HOME)/.ctwmrc \
$(HOME)/.config/sway/config \
$(HOME)/.env \
$(HOME)/.gitconfig \
$(HOME)/.nethackrc \
@@ -23,65 +19,69 @@ TARGETS = \
$(HOME)/.config/youtube-dl/youtube-dl.conf
$(HOME)/.aliases: sh/aliases
ln -s sh/aliases $(HOME)/.aliases
ln -s sh/aliases $@
$(HOME)/.config/bspwm/bspwmrc: bspwm/bspwmrc
mkdir -p $(HOME)/.config/bspwm/
cp bspwm/bspwmrc $(HOME)/.config/bspwm/bspwmrc
cp bspwm/bspwmrc $@
$(HOME)/.config/i3/config: i3/config
mkdir -p $(HOME)/.config/i3/
cp i3/config $(HOME)/.config/i3/config
cp i3/config $@
$(HOME)/.config/i3status/config: i3status/config
mkdir -p $(HOME)/.config/i3status/
cp i3status/config $(HOME)/.config/i3status/config
cp i3status/config $@
$(HOME)/.config/helix/config.toml: helix/config.toml
mkdir -p $(HOME)/.config/helix
ln -s helix/config.toml $(HOME)/.config/helix/config.toml
ln -s helix/config.toml $@
$(HOME)/.config/helix/themes/trinity.toml: helix/trinity.toml
mkdir -p $(HOME)/.config/helix/themes
ln -s helix/trinity.toml $(HOME)/.config/helix/themes/trinity.toml
ln -s helix/trinity.toml $@
$(HOME)/.config/nvim/init.vim: nvim/init.vim
mkdir -p $(HOME)/.config/nvim/
ln -s nvim/init.vim $(HOME)/.config/nvim/init.vim
ln -s nvim/init.vim $@
$(HOME)/.config/sxhkd/sxhkdrc: sxhkd/sxhkdrc
mkdir -p $(HOME)/.config/sxhkd/
cp sxhkd/sxhkdrc $(HOME)/.config/sxhkd/sxhkdrc
cp sxhkd/sxhkdrc $@
$(HOME)/.config/sway/config: sway/config
mkdir -p $(HOME)/.config/sway/
ln -s sway/config $@
# cannot be a symlink
$(HOME)/.config/sxmo/profile: sxmo/profile
mkdir -p $(HOME)/.config/sxmo/
cp sxmo/profile $(HOME)/.config/sxmo/profile
cp sxmo/profile $@
$(HOME)/.ctwmrc: ctwm/ctwmrc
cp ctwm/ctwmrc $(HOME)/.ctwmrc
cp ctwm/ctwmrc $@
$(HOME)/.env: sh/env
ln -s sh/env $(HOME)/.env
ln -s sh/env $@
$(HOME)/.gitconfig: git/gitconfig
cp git/gitconfig $(HOME)/.gitconfig
cp git/gitconfig $@
$(HOME)/.nethackrc: nethack/nethackrc
ln -s nethack/nethackrc $(HOME)/.nethackrc
ln -s nethack/nethackrc $@
$(HOME)/.profile: sh/profile
ln -s sh/profile $(HOME)/.profile
ln -s sh/profile $@
$(HOME)/.vimrc: vim/vimrc
ln -s vim/vimrc $(HOME)/.vimrc
ln -s vim/vimrc $@
$(HOME)/.xinitrc: xinit/xinitrc
ln -s xinit/xinitrc $(HOME)/.xinitrc
ln -s xinit/xinitrc $@
$(HOME)/.Xresources: X/Xresources
ln -s X/Xresources $(HOME)/.Xresources
ln -s X/Xresources $@
$(HOME)/.config/youtube-dl/youtube-dl.conf: youtube-dl/youtube-dl.conf
mkdir -p $(HOME)/.config/youtube-dl
cp youtube-dl/youtube-dl.conf $(HOME)/.config/youtube-dl/youtube-dl.conf
cp youtube-dl/youtube-dl.conf $@