add flatpak app installs

This commit is contained in:
Kendall Whitman
2026-02-18 11:01:51 -06:00
parent 978845ea74
commit dae7e51cc4
2 changed files with 13 additions and 0 deletions

View File

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

View File

@@ -42,6 +42,11 @@ def install_apps():
], check=True) ], check=True)
def install_flatpak_apps():
for app in config.FLATPAK_APPS:
subprocess.run(['flatpak', 'install', f"{app}"])
def stow_dot_files(): def stow_dot_files():
for dotfile in config.DOTFILES: for dotfile in config.DOTFILES:
subprocess.run(['stow', f"{dotfile}", '--adopt']) subprocess.run(['stow', f"{dotfile}", '--adopt'])
@@ -51,4 +56,5 @@ def stow_dot_files():
sym_link_dir() sym_link_dir()
install_apps() install_apps()
install_flatpak_apps()
stow_dot_files() stow_dot_files()