update file structure

This commit is contained in:
Kendall Whitman
2026-04-23 11:17:45 -05:00
parent 1aeb550ec7
commit 1e2f5c61da
31 changed files with 3 additions and 725 deletions
-8
View File
@@ -33,11 +33,3 @@ APPS = [
'torbrowser-launcher',
'wl-clipboard',
]
DOTFILES = [
'alacritty',
'fish',
'nvim',
'rtorrent',
'tmux',
]
+3 -2
View File
@@ -48,14 +48,15 @@ def install_apps():
def stow_dot_files():
dotfiles_root = Path.home() / '.dotfiles'
config_dir = Path.home() / '.config'
subprocess.run(
['stow', '-d', str(dotfiles_root), *config.DOTFILES, '--adopt'],
['stow', '-d', str(dotfiles_root), '-t', str(config_dir), '--adopt', 'config'],
check=True
)
subprocess.run(
['git', 'checkout', '--', *config.DOTFILES],
['git', 'checkout', '--', 'config'],
cwd=dotfiles_root,
check=True,
)