From dae7e51cc4fcefa35f1071cecc64c57d3ab4baa4 Mon Sep 17 00:00:00 2001 From: Kendall Whitman Date: Wed, 18 Feb 2026 11:01:51 -0600 Subject: [PATCH] add flatpak app installs --- config.py | 7 +++++++ install.py | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/config.py b/config.py index ba92814..f551d9a 100644 --- a/config.py +++ b/config.py @@ -13,9 +13,11 @@ DIRECTORIES_TO_REMOVE = [ ] APPS = [ + 'electrum', 'element-desktop', 'flatpak', 'fprintd', + 'freecad', 'libreoffice-fresh', 'librewolf-bin', 'neovim-git', @@ -25,9 +27,14 @@ APPS = [ 'steam', 'stow', 'tmux', + 'torbrowser-launcher', 'wl-clipboard', ] +FLATPAK_APPS = [ + 'it.mijorus.gearlever', +] + DOTFILES = [ 'alacritty', 'fish', diff --git a/install.py b/install.py index 77619cd..51d8c35 100644 --- a/install.py +++ b/install.py @@ -42,6 +42,11 @@ 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']) @@ -51,4 +56,5 @@ def stow_dot_files(): sym_link_dir() install_apps() +install_flatpak_apps() stow_dot_files()