diff --git a/setup/arch/config.py b/setup/arch/config.py index d8efb36..7463220 100644 --- a/setup/arch/config.py +++ b/setup/arch/config.py @@ -33,5 +33,4 @@ DOTFILES = [ 'nvim', 'rtorrent', 'tmux', - 'tmuxp', ] diff --git a/setup/arch/install.py b/setup/arch/install.py index 77619cd..24963c4 100644 --- a/setup/arch/install.py +++ b/setup/arch/install.py @@ -44,7 +44,7 @@ def install_apps(): def stow_dot_files(): for dotfile in config.DOTFILES: - subprocess.run(['stow', f"{dotfile}", '--adopt']) + subprocess.run(['stow', f"../../{dotfile}", '--adopt']) subprocess.run(['git', 'checkout', '--', '.'])