Compare commits

..

3 Commits

Author SHA1 Message Date
Kendall Whitman
dae7e51cc4 add flatpak app installs 2026-02-18 11:01:51 -06:00
Kendall Whitman
978845ea74 add fprintd 2026-02-08 14:38:59 -06:00
Kendall Whitman
0937aa4e6e fix stow function 2026-02-05 18:10:26 -06:00
2 changed files with 16 additions and 2 deletions

View File

@@ -8,13 +8,16 @@ DIRECTORIES = [
]
DIRECTORIES_TO_REMOVE = [
'Templates',
'Public',
'Templates',
]
APPS = [
'electrum',
'element-desktop',
'flatpak',
'fprintd',
'freecad',
'libreoffice-fresh',
'librewolf-bin',
'neovim-git',
@@ -24,9 +27,14 @@ APPS = [
'steam',
'stow',
'tmux',
'torbrowser-launcher',
'wl-clipboard',
]
FLATPAK_APPS = [
'it.mijorus.gearlever',
]
DOTFILES = [
'alacritty',
'fish',

View File

@@ -42,13 +42,19 @@ def install_apps():
], check=True)
def install_flatpak_apps():
for app in config.FLATPAK_APPS:
subprocess.run(['flatpak', 'install', f"{app}"])
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', '--', '.'])
sym_link_dir()
install_apps()
install_flatpak_apps()
stow_dot_files()