From 5a7db2f34aa6a6787d98a001b6d28be97f36abf4 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 25 Jun 2021 12:56:30 +0200 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- audacity/Makefile | 18 ++++++++++++++++++ audacity/audacity.cfg | 3 +++ audacity/user-profile | 3 +++ 3 files changed, 24 insertions(+) create mode 100644 audacity/Makefile create mode 100644 audacity/audacity.cfg create mode 100644 audacity/user-profile (limited to 'audacity') 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 -- cgit v1.2.3-70-g09d2