Compare commits

..

3 Commits

Author SHA1 Message Date
Kendall Whitman
940604658b update app list 2026-02-04 08:08:34 -06:00
Kendall Whitman
65e62cc887 fix condition 2026-02-03 19:13:41 -06:00
Kendall Whitman
b96a80b4f7 update imports 2026-02-03 18:51:08 -06:00
2 changed files with 3 additions and 3 deletions

View File

@@ -13,10 +13,10 @@ DIRECTORIES_TO_REMOVE = [
] ]
APPS = [ APPS = [
'brave-bin',
'element-desktop', 'element-desktop',
'flatpak', 'flatpak',
'libreoffice-fresh', 'libreoffice-fresh',
'librewolf-bin',
'neovim-git', 'neovim-git',
'proton-mail-bin', 'proton-mail-bin',
'proton-vpn-gtk-app', 'proton-vpn-gtk-app',

View File

@@ -1,12 +1,12 @@
import subprocess import subprocess
import config
from pathlib import Path from pathlib import Path
from arch import config
def sym_link_dir(): def sym_link_dir():
confirm_link = input("Do you want to link home directories to external storage?(Y/n): ") confirm_link = input("Do you want to link home directories to external storage?(Y/n): ")
if confirm_link.lower == "y" or confirm_link.lower == '': if confirm_link.lower() == "y" or confirm_link.lower() == '':
target_dir = input("Specify the full path to the external storage: ") target_dir = input("Specify the full path to the external storage: ")
def home_dir_item(item): def home_dir_item(item):