diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
commit | 5a7db2f34aa6a6787d98a001b6d28be97f36abf4 (patch) | |
tree | 52db199005cc5daee35b5c0e9b3d28b534449e1c /audacity | |
download | dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.gz dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.bz2 dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'audacity')
-rw-r--r-- | audacity/Makefile | 18 | ||||
-rw-r--r-- | audacity/audacity.cfg | 3 | ||||
-rw-r--r-- | audacity/user-profile | 3 |
3 files changed, 24 insertions, 0 deletions
diff --git a/audacity/Makefile b/audacity/Makefile new file mode 100644 index 0000000..ea262e6 --- /dev/null +++ b/audacity/Makefile @@ -0,0 +1,18 @@ +.POSIX: + +# Audacity heavily edits audacity.cfg so we make copy it instead of linking it + +install: + mkdir -p -- ~/.var/lib/audacity + mkdir -p -- ~/.config/profile.d + test ! -d ~/.config/profile.d/audacity + ln -sf -- ~/.dotfiles/audacity/user-profile ~/.config/profile.d/audacity + cp -- audacity.cfg ~/.var/lib/audacity/ + +uninstall: + -unlink -- ~/.config/profile.d/audacity + -rmdir -- ~/.config/profile.d + -rm -rf -- ~/.var/lib/audacity + -rm -rf -- /var/tmp/"audacity-$$(whoami)" + +.PHONY: install uninstall diff --git a/audacity/audacity.cfg b/audacity/audacity.cfg new file mode 100644 index 0000000..5c2b45e --- /dev/null +++ b/audacity/audacity.cfg @@ -0,0 +1,3 @@ +[GUI] +Theme=dark +ShowExtraMenus=1 diff --git a/audacity/user-profile b/audacity/user-profile new file mode 100644 index 0000000..99162c5 --- /dev/null +++ b/audacity/user-profile @@ -0,0 +1,3 @@ +# -*- shell-script -*- + +export AUDACITY_PATH=~/.var/lib/audacity |