From b1ad5187f4aea20ac6ef68d9d6dcfc045e230452 Mon Sep 17 00:00:00 2001 From: Kendall Whitman Date: Wed, 4 Feb 2026 12:04:16 -0600 Subject: [PATCH] update config --- setup/arch/config.py | 1 - setup/arch/install.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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', '--', '.'])