Compare commits
3 Commits
9a088dae4b
...
940604658b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
940604658b | ||
|
|
65e62cc887 | ||
|
|
b96a80b4f7 |
@@ -13,10 +13,10 @@ DIRECTORIES_TO_REMOVE = [
|
||||
]
|
||||
|
||||
APPS = [
|
||||
'brave-bin',
|
||||
'element-desktop',
|
||||
'flatpak',
|
||||
'libreoffice-fresh',
|
||||
'librewolf-bin',
|
||||
'neovim-git',
|
||||
'proton-mail-bin',
|
||||
'proton-vpn-gtk-app',
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import subprocess
|
||||
import config
|
||||
from pathlib import Path
|
||||
from arch import config
|
||||
|
||||
|
||||
def sym_link_dir():
|
||||
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: ")
|
||||
|
||||
def home_dir_item(item):
|
||||
|
||||
Reference in New Issue
Block a user