Compare commits
3 Commits
9a088dae4b
...
940604658b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
940604658b | ||
|
|
65e62cc887 | ||
|
|
b96a80b4f7 |
@@ -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',
|
||||||
|
|||||||
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user