From 5df1f27c638c487dfd664ea3a0f756565e1e57bd Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Mon, 8 Feb 2021 18:06:43 -0300 Subject: etc: use ${DOCUMENTS} macro where appropriate Currently, some paths are hard-coded: $ grep -Fnr '${HOME}/Documents' etc etc-fixes etc/profile-m-z/Mathematica.profile:19:mkdir ${HOME}/Documents/Wolfram Mathematica etc/profile-m-z/Mathematica.profile:22:whitelist ${HOME}/Documents/Wolfram Mathematica etc/profile-a-l/keepassxc.profile:34:# If you do so, you MUST store your database under ${HOME}/Documents/KeePassXC/foo.kdbx etc/profile-a-l/keepassxc.profile:35:#mkdir ${HOME}/Documents/KeePassXC etc/profile-a-l/keepassxc.profile:36:#whitelist ${HOME}/Documents/KeePassXC Commands used to search and replace: $ find etc etc-fixes/ -type f -exec \ sed -i.bak -e 's|\${HOME}/Documents|${DOCUMENTS}|' '{}' + Related to that, the (lack of) usage of ${DOWNLOADS} has been recently fixed on commit deae31301 ("use ${DOWNLOADS} in lutris.profile (#3955)"). With the above change, all macros other than ${DOCUMENTS} seem to be already used appropriately: $ grep -Fnr '${HOME}/Desktop' etc etc-fixes $ grep -Fnr '${HOME}/Downloads' etc etc-fixes $ grep -Fnr '${HOME}/Music' etc etc-fixes $ grep -Fnr '${HOME}/Pictures' etc etc-fixes $ grep -Fnr '${HOME}/Videos' etc etc-fixes See src/firejail/macros.c for details. --- etc/profile-m-z/Mathematica.profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/profile-m-z/Mathematica.profile') diff --git a/etc/profile-m-z/Mathematica.profile b/etc/profile-m-z/Mathematica.profile index c2734b1c1..0f79b6a97 100644 --- a/etc/profile-m-z/Mathematica.profile +++ b/etc/profile-m-z/Mathematica.profile @@ -16,10 +16,10 @@ include disable-programs.inc mkdir ${HOME}/.Mathematica mkdir ${HOME}/.Wolfram Research -mkdir ${HOME}/Documents/Wolfram Mathematica +mkdir ${DOCUMENTS}/Wolfram Mathematica whitelist ${HOME}/.Mathematica whitelist ${HOME}/.Wolfram Research -whitelist ${HOME}/Documents/Wolfram Mathematica +whitelist ${DOCUMENTS}/Wolfram Mathematica include whitelist-common.inc caps.drop all -- cgit v1.2.3-70-g09d2