From 4f9fda493af509f0d07182f1e1f717c310fde4e0 Mon Sep 17 00:00:00 2001 From: "Ryan A. Pavlik" Date: Fri, 7 Apr 2023 11:39:41 -0500 Subject: [PATCH 1/1] NNormalize referring to environment variables for max compatibility. (#247) --- programs/alsa.json | 2 +- programs/apvlv.json | 2 +- programs/aria2.json | 8 ++++---- programs/asdf-vm.json | 4 ++-- programs/asunder.json | 8 ++++---- programs/bash.json | 2 +- programs/binwalk.json | 2 +- programs/bpython.json | 2 +- programs/byobu.json | 2 +- programs/cabal.json | 2 +- programs/ccache.json | 4 ++-- programs/cgdb.json | 4 ++-- programs/chez.json | 4 ++-- programs/cinnamon.json | 12 ++++++------ programs/clojure.json | 2 +- programs/cpanminus.json | 2 +- programs/curl.json | 2 +- programs/emacs.json | 6 +++--- programs/fontconfig.json | 8 ++++---- programs/fonts.json | 4 ++-- programs/gdb.json | 4 ++-- programs/gef.json | 2 +- programs/gem.json | 12 ++++++------ programs/git.json | 6 +++--- programs/gnuplot.json | 4 ++-- programs/goobookrc.json | 2 +- programs/httpie.json | 4 ++-- programs/icons.json | 4 ++-- programs/ideavim.json | 2 +- programs/ipython.json | 4 ++-- programs/latexmk.json | 2 +- programs/less.json | 4 ++-- programs/lnav.json | 4 ++-- programs/lua.json | 2 +- programs/mapscii.json | 4 ++-- programs/matplotlib.json | 4 ++-- programs/mcfly.json | 2 +- programs/mercurial.json | 2 +- programs/msmtp.json | 2 +- programs/nano.json | 4 ++-- programs/netbeans.json | 4 ++-- programs/notmuch.json | 2 +- programs/npm.json | 4 ++-- programs/pandoc.json | 2 +- programs/pex.json | 4 ++-- programs/pnpm.json | 4 ++-- programs/pulseaudio.json | 4 ++-- programs/pylint.json | 4 ++-- programs/qrcp.json | 4 ++-- programs/racket.json | 4 ++-- programs/rtorrent.json | 4 ++-- programs/sandboxd.json | 2 +- programs/scummvm.json | 4 ++-- programs/simplescreenrecorder.json | 4 ++-- programs/sqlite.json | 2 +- programs/surf.json | 4 ++-- programs/swap.json | 2 +- programs/taskwarrior.json | 4 ++-- programs/themes.json | 4 ++-- programs/tig.json | 4 ++-- programs/tmux.json | 2 +- programs/trash.json | 4 ++-- programs/virtualbox.json | 2 +- programs/visidata.json | 4 ++-- programs/weechat.json | 4 ++-- programs/when.json | 4 ++-- programs/xcompose.json | 8 ++++---- programs/xmobar.json | 2 +- programs/xonsh.json | 2 +- 69 files changed, 129 insertions(+), 129 deletions(-) diff --git a/programs/alsa.json b/programs/alsa.json index 729d045..e238402 100644 --- a/programs/alsa.json +++ b/programs/alsa.json @@ -4,7 +4,7 @@ { "path": "$HOME/.asoundrc", "movable": true, - "help": "Supported since _v1.2.3_.\n\nYou can move the file to _XDG_CONFIG_HOME/alsa/asoundrc_.\n" + "help": "Supported since _v1.2.3_.\n\nYou can move the file to _$XDG_CONFIG_HOME/alsa/asoundrc_.\n" } ] } diff --git a/programs/apvlv.json b/programs/apvlv.json index 1be64c9..6e761ee 100644 --- a/programs/apvlv.json +++ b/programs/apvlv.json @@ -4,7 +4,7 @@ { "path": "$HOME/.apvlvrc", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the file to _XDG_CONFIG_HOME/apvlv/apvlvrc_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the file to _$XDG_CONFIG_HOME/apvlv/apvlvrc_.\n" } ] } diff --git a/programs/aria2.json b/programs/aria2.json index 0d4d127..1cb2248 100644 --- a/programs/aria2.json +++ b/programs/aria2.json @@ -2,14 +2,14 @@ "name": "aria2_dir", "files": [ { - "path": "${HOME}/.aria2/dht.dat", + "path": "$HOME/.aria2/dht.dat", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.aria2/dht.dat can be moved to ${XDG_CACHE_HOME}/aria2/dht.dat.\n" + "help": "Supported\n\nThe file $HOME/.aria2/dht.dat can be moved to $XDG_CACHE_HOME/aria2/dht.dat.\n" }, { - "path": "${HOME}/.aria2/aria.conf", + "path": "$HOME/.aria2/aria.conf", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.aria2/aria.conf can be moved to ${XDG_CONFIG_HOME}/aria2/aria2.conf.\n" + "help": "Supported\n\nThe file $HOME/.aria2/aria.conf can be moved to $XDG_CONFIG_HOME/aria2/aria2.conf.\n" } ] } diff --git a/programs/asdf-vm.json b/programs/asdf-vm.json index 8ebefe3..6f51c48 100644 --- a/programs/asdf-vm.json +++ b/programs/asdf-vm.json @@ -3,12 +3,12 @@ { "path": "$HOME/.asdf", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport ASDF_DATA_DIR=\"${XDG_DATA_HOME}\"/asdf\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport ASDF_DATA_DIR=\"$XDG_DATA_HOME\"/asdf\n```\n" }, { "path": "$HOME/.asdfrc", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport ASDF_CONFIG_FILE=\"${XDG_CONFIG_HOME}\"/asdf/asdfrc\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport ASDF_CONFIG_FILE=\"$XDG_CONFIG_HOME\"/asdf/asdfrc\n```\n" } ], "name": "asdf-vm" diff --git a/programs/asunder.json b/programs/asunder.json index 1c8735c..0a63dcf 100644 --- a/programs/asunder.json +++ b/programs/asunder.json @@ -4,22 +4,22 @@ { "path": "$HOME/.asunder", "movable": true, - "help": "Supported since _v2.9.0_.\n\nYou can move the file to _XDG_CONFIG_HOME/asunder/asunder_.\n" + "help": "Supported since _v2.9.0_.\n\nYou can move the file to _$XDG_CONFIG_HOME/asunder/asunder_.\n" }, { "path": "$HOME/.asunder_album_artist", "movable": true, - "help": "Supported since _v2.9.0_.\n\nYou can move the file to _XDG_CACHE_HOME/asunder/asunder_album_artist_.\n" + "help": "Supported since _v2.9.0_.\n\nYou can move the file to _$XDG_CACHE_HOME/asunder/asunder_album_artist_.\n" }, { "path": "$HOME/.asunder_album_genre", "movable": true, - "help": "Supported since _v2.9.0_.\n\nYou can move the file to _XDG_CACHE_HOME/asunder/asunder_album_genre_.\n" + "help": "Supported since _v2.9.0_.\n\nYou can move the file to _$XDG_CACHE_HOME/asunder/asunder_album_genre_.\n" }, { "path": "$HOME/.asunder_album_title", "movable": true, - "help": "Supported since _v2.9.0_.\n\nYou can move the file to _XDG_CACHE_HOME/asunder/asunder_album_title_.\n" + "help": "Supported since _v2.9.0_.\n\nYou can move the file to _$XDG_CACHE_HOME/asunder/asunder_album_title_.\n" } ] } diff --git a/programs/bash.json b/programs/bash.json index 73bb82f..6b468cc 100644 --- a/programs/bash.json +++ b/programs/bash.json @@ -28,7 +28,7 @@ { "path": "$HOME/.oh-my-bash", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport OSH=\"${XDG_DATA_HOME}/oh-my-bash\"\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport OSH=\"$XDG_DATA_HOME/oh-my-bash\"\n```\n" }, { "path": "$HOME/.bash_history", diff --git a/programs/binwalk.json b/programs/binwalk.json index 97e45dc..82e4785 100644 --- a/programs/binwalk.json +++ b/programs/binwalk.json @@ -4,7 +4,7 @@ { "path": "$HOME/.binwalk", "movable": true, - "help": "Supported since commit _2051757_.\n\nYou can move the file to _XDG_CONFIG_HOME/binwalk_.\n" + "help": "Supported since commit _2051757_.\n\nYou can move the file to _$XDG_CONFIG_HOME/binwalk_.\n" } ] } diff --git a/programs/bpython.json b/programs/bpython.json index 145e950..3d1a68a 100644 --- a/programs/bpython.json +++ b/programs/bpython.json @@ -3,7 +3,7 @@ { "path": "$HOME/.pythonhist", "movable": true, - "help": "You can overwrite this in the config file:\n\n(_XDG_CONFIG_HOME/bpython/config_)\n```bash\n[general]\nhist_file = $XDG_DATA_HOME/bpythonhistory\n```\n" + "help": "You can overwrite this in the config file:\n\n(_$XDG_CONFIG_HOME/bpython/config_)\n```bash\n[general]\nhist_file = $XDG_DATA_HOME/bpythonhistory\n```\n" } ], "name": "bpython" diff --git a/programs/byobu.json b/programs/byobu.json index 5915792..a105ba6 100644 --- a/programs/byobu.json +++ b/programs/byobu.json @@ -4,7 +4,7 @@ { "path": "$HOME/.byobu", "movable": true, - "help": "Supported since _v4.17_.\n\nYou can move the file to _XDG_CONFIG_HOME/byobu_.\n" + "help": "Supported since _v4.17_.\n\nYou can move the file to _$XDG_CONFIG_HOME/byobu_.\n" } ] } diff --git a/programs/cabal.json b/programs/cabal.json index b3e546c..81b84be 100644 --- a/programs/cabal.json +++ b/programs/cabal.json @@ -3,7 +3,7 @@ { "path": "$HOME/.cabal", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport CABAL_CONFIG=\"$XDG_CONFIG_HOME\"/cabal/config\nexport CABAL_DIR=\"$XDG_DATA_HOME\"/cabal\n```\n\n_cabal_ might also require you to edit your new _XDG_CONFIG_HOME/cabal/config_ file by replacing all mentions of _~/.cabal_ with either _XDG_CONFIG_HOME/cabal_ or _XDG_DATA_HOME/cabal_." + "help": "Export the following environment variables:\n\n```bash\nexport CABAL_CONFIG=\"$XDG_CONFIG_HOME\"/cabal/config\nexport CABAL_DIR=\"$XDG_DATA_HOME\"/cabal\n```\n\n_cabal_ might also require you to edit your new _$XDG_CONFIG_HOME/cabal/config_ file by replacing all mentions of _~/.cabal_ with either _$XDG_CONFIG_HOME/cabal_ or _$XDG_DATA_HOME/cabal_." } ], "name": "cabal" diff --git a/programs/ccache.json b/programs/ccache.json index a757b15..eb7cc5d 100644 --- a/programs/ccache.json +++ b/programs/ccache.json @@ -2,9 +2,9 @@ "name": "ccache", "files": [ { - "path": "${HOME}/.ccache", + "path": "$HOME/.ccache", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport CCACHE_DIR=\"${XDG_CACHE_HOME}\"/ccache\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport CCACHE_DIR=\"$XDG_CACHE_HOME\"/ccache\n```\n" } ] } diff --git a/programs/cgdb.json b/programs/cgdb.json index 3bff00d..c111138 100644 --- a/programs/cgdb.json +++ b/programs/cgdb.json @@ -3,8 +3,8 @@ { "path": "$HOME/.cgdb", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport CGDB_DIR=\"$XDG_CONFIG_HOME\"/cgdb\n```\n\nMove the configuration file to _XDG_CONFIG_HOME/cgdb/cgdbrc_\n" + "help": "Export the following environment variables:\n\n```bash\nexport CGDB_DIR=\"$XDG_CONFIG_HOME\"/cgdb\n```\n\nMove the configuration file to _$XDG_CONFIG_HOME/cgdb/cgdbrc_\n" } ], "name": "cgdb" -} \ No newline at end of file +} diff --git a/programs/chez.json b/programs/chez.json index 87325cb..7e8fd4c 100644 --- a/programs/chez.json +++ b/programs/chez.json @@ -2,9 +2,9 @@ "name": "chez", "files": [ { - "path": "${HOME}/.chezscheme_history", + "path": "$HOME/.chezscheme_history", "movable": true, - "help": "Alias petite to use custom locations:\n\n```bash\nalias petite=petite --eehistory ${XDG_DATA_HOME}/chezscheme/history\nalias scheme=scheme --eehistory ${XDG_DATA_HOME}/chezscheme/history```\n" + "help": "Alias petite to use custom locations:\n\n```bash\nalias petite=petite --eehistory $XDG_DATA_HOME/chezscheme/history\nalias scheme=scheme --eehistory $XDG_DATA_HOME/chezscheme/history```\n" } ] } diff --git a/programs/cinnamon.json b/programs/cinnamon.json index 4c53e82..22f12b4 100644 --- a/programs/cinnamon.json +++ b/programs/cinnamon.json @@ -4,32 +4,32 @@ { "path": "$HOME/.cinnamon/spices.cache/", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can either delete or move the folder to _XDG_CACHE_HOME/cinnamon/spices_.\n" + "help": "Supported since _5.6.0_.\n\nYou can either delete or move the folder to _$XDG_CACHE_HOME/cinnamon/spices_.\n" }, { "path": "$HOME/.cinnamon/panel-launchers/", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can move the folder to _XDG_DATA_HOME/cinnamon/panel-launchers_.\n" + "help": "Supported since _5.6.0_.\n\nYou can move the folder to _$XDG_DATA_HOME/cinnamon/panel-launchers_.\n" }, { "path": "$HOME/.cinnamon/backgrounds/", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can move the folder to _XDG_DATA_HOME/cinnamon/backgrounds_.\n" + "help": "Supported since _5.6.0_.\n\nYou can move the folder to _$XDG_DATA_HOME/cinnamon/backgrounds_.\n" }, { "path": "$HOME/.cinnamon/configs/", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can move the folder to _XDG_CONFIG_HOME/cinnamon/spices_.\n" + "help": "Supported since _5.6.0_.\n\nYou can move the folder to _$XDG_CONFIG_HOME/cinnamon/spices_.\n" }, { "path": "$HOME/.cinnamon/glass.log", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can either delete or move the file to _XDG_STATE_HOME/cinnamon/glass.log_.\n" + "help": "Supported since _5.6.0_.\n\nYou can either delete or move the file to _$XDG_STATE_HOME/cinnamon/glass.log_.\n" }, { "path": "$HOME/.cinnamon/harvester.log", "movable": true, - "help": "Supported since _5.6.0_.\n\nYou can either delete or move the file to _XDG_STATE_HOME/cinnamon/harvester.log_.\n" + "help": "Supported since _5.6.0_.\n\nYou can either delete or move the file to _$XDG_STATE_HOME/cinnamon/harvester.log_.\n" } ] } diff --git a/programs/clojure.json b/programs/clojure.json index c7df049..3465a73 100644 --- a/programs/clojure.json +++ b/programs/clojure.json @@ -4,7 +4,7 @@ { "path": "$HOME/.clojure", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the directory to _XDG_CONFIG_HOME/clojure_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the directory to _$XDG_CONFIG_HOME/clojure_.\n" } ] } diff --git a/programs/cpanminus.json b/programs/cpanminus.json index b39b860..5fe21d7 100644 --- a/programs/cpanminus.json +++ b/programs/cpanminus.json @@ -3,7 +3,7 @@ { "path": "$HOME/.cpanm", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport PERL_CPANM_HOME=\"${XDG_CACHE_HOME}\"/cpanm\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport PERL_CPANM_HOME=\"$XDG_CACHE_HOME\"/cpanm\n```\n" } ], "name": "cpanminus" diff --git a/programs/curl.json b/programs/curl.json index add51ae..0d6bece 100644 --- a/programs/curl.json +++ b/programs/curl.json @@ -4,7 +4,7 @@ { "path": "$HOME/.curlrc", "movable": true, - "help": "Supported since _v7.73.0_.\n\nYou can move the file to _XDG_CONFIG_HOME/.curlrc_.\n" + "help": "Supported since _v7.73.0_.\n\nYou can move the file to _$XDG_CONFIG_HOME/.curlrc_.\n" } ] } diff --git a/programs/emacs.json b/programs/emacs.json index 22b226d..566e665 100644 --- a/programs/emacs.json +++ b/programs/emacs.json @@ -1,7 +1,7 @@ { "files": [ { - "help": "Supported since _27.1_.\n\nYou can move the file to _XDG_CONFIG_HOME/emacs/init.el_.\n", + "help": "Supported since _27.1_.\n\nYou can move the file to _$XDG_CONFIG_HOME/emacs/init.el_.\n", "movable": true, "path": "$HOME/.emacs.d/init.el" }, @@ -11,10 +11,10 @@ "path": "$HOME/.emacs.d" }, { - "help": "Looks to be supported natively. However, according to XDG \"Legacy paths have precedence over XDG paths. Emacs will never create _XDG_CONFIG_HOME/emacs/_\".\nMove at your own risk.\n\nYou can move the file to _XDG_CONFIG_HOME/emacs_.\n", + "help": "Looks to be supported natively. However, according to XDG \"Legacy paths have precedence over XDG paths. Emacs will never create _$XDG_CONFIG_HOME/emacs/_\".\nMove at your own risk.\n\nYou can move the file to _$XDG_CONFIG_HOME/emacs_.\n", "movable": true, "path": "$HOME/.emacs" } ], "name": "emacs" -} \ No newline at end of file +} diff --git a/programs/fontconfig.json b/programs/fontconfig.json index 9233b26..2edc7aa 100644 --- a/programs/fontconfig.json +++ b/programs/fontconfig.json @@ -2,14 +2,14 @@ "name": "fontconfig", "files": [ { - "path": "${HOME}/.fontconfig", + "path": "$HOME/.fontconfig", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.fontconfig can be moved to ${XDG_DATA_HOME}/fontconfig.\n" + "help": "Supported\n\nThe file $HOME/.fontconfig can be moved to $XDG_DATA_HOME/fontconfig.\n" }, { - "path": "${HOME}/.fonts.conf", + "path": "$HOME/.fonts.conf", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.fonts.conf can be moved to ${XDG_DATA_HOME}/fontconfig/fonts.conf.\n" + "help": "Supported\n\nThe file $HOME/.fonts.conf can be moved to $XDG_DATA_HOME/fontconfig/fonts.conf.\n" } ] } diff --git a/programs/fonts.json b/programs/fonts.json index 0fd2a9a..ebf54f5 100644 --- a/programs/fonts.json +++ b/programs/fonts.json @@ -2,9 +2,9 @@ "name": "fonts", "files": [ { - "path": "${HOME}/.fonts", + "path": "$HOME/.fonts", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.fonts can be moved to ${XDG_DATA_HOME}/fonts.\n" + "help": "Supported\n\nThe file $HOME/.fonts can be moved to $XDG_DATA_HOME/fonts.\n" } ] } diff --git a/programs/gdb.json b/programs/gdb.json index 11fee1c..0f066a8 100644 --- a/programs/gdb.json +++ b/programs/gdb.json @@ -2,14 +2,14 @@ "name": "gdb", "files": [ { - "path": "${HOME}/.gdbinit", + "path": "$HOME/.gdbinit", "movable": true, "help": "Alias gdb to use custom locations:\n\n```bash\nalias gdb=gdb -n -x $XDG_CONFIG_HOME/gdb/init```\n" }, { "path": "$HOME/.gdb_history", "movable": true, - "help": "GDB supports setting it's config file path through an environment variable. Simply move your _.gdb_history_ file to _XDG_CONFIG_HOME/gdb_ and export the following:\n\n```bash\nexport GDBHISTFILE=\"$XDG_CONFIG_HOME\"/gdb/.gdb_history \n```\n\nNote: If you are using GEF this does not work, as GEF overwrites the filepath. In order to use the correct path again, you have to call ```set history filename ~/.config/gdb/.gdb_history``` after you source _gef.py_ in your gdb init file.\n" + "help": "GDB supports setting it's config file path through an environment variable. Simply move your _.gdb_history_ file to _$XDG_CONFIG_HOME/gdb_ and export the following:\n\n```bash\nexport GDBHISTFILE=\"$XDG_CONFIG_HOME\"/gdb/.gdb_history \n```\n\nNote: If you are using GEF this does not work, as GEF overwrites the filepath. In order to use the correct path again, you have to call ```set history filename ~/.config/gdb/.gdb_history``` after you source _gef.py_ in your gdb init file.\n" } ] } diff --git a/programs/gef.json b/programs/gef.json index a9cd31d..92e6a98 100644 --- a/programs/gef.json +++ b/programs/gef.json @@ -4,7 +4,7 @@ { "path": "$HOME/.gef.rc", "movable": true, - "help": "GEF supports setting it's config file path through an environment variable. Simply move your _.gef.rc_ file to _XDG_CONFIG_HOME/gef_ and export the following:\n\n```bash\nexport GEF_RC=\"$XDG_CONFIG_HOME\"/gef/.gef.rc \n```\n" + "help": "GEF supports setting it's config file path through an environment variable. Simply move your _.gef.rc_ file to _$XDG_CONFIG_HOME/gef_ and export the following:\n\n```bash\nexport GEF_RC=\"$XDG_CONFIG_HOME\"/gef/.gef.rc \n```\n" } ] } diff --git a/programs/gem.json b/programs/gem.json index 63ef673..93d6891 100644 --- a/programs/gem.json +++ b/programs/gem.json @@ -2,19 +2,19 @@ "name": "gem", "files": [ { - "path": "${HOME}/.gem/ruby", + "path": "$HOME/.gem/ruby", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.gem/ruby can be moved to ${XDG_CONFIG_HOME}/gem.\n" + "help": "Supported\n\nThe file $HOME/.gem/ruby can be moved to $XDG_CONFIG_HOME/gem.\n" }, { - "path": "${HOME}/.gem", + "path": "$HOME/.gem", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport GEM_HOME=\"${XDG_DATA_HOME}\"/gem\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport GEM_HOME=\"$XDG_DATA_HOME\"/gem\n```\n" }, { - "path": "${HOME}/.gem/specs", + "path": "$HOME/.gem/specs", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport GEM_SPEC_CACHE=\"${XDG_CACHE_HOME}\"/gem\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport GEM_SPEC_CACHE=\"$XDG_CACHE_HOME\"/gem\n```\n" } ] } diff --git a/programs/git.json b/programs/git.json index 61a41bd..2144edf 100644 --- a/programs/git.json +++ b/programs/git.json @@ -4,17 +4,17 @@ { "path": "$HOME/.gitconfig", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the file to _XDG_CONFIG_HOME/git/config_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the file to _$XDG_CONFIG_HOME/git/config_.\n" }, { "path": "$HOME/.gitignore", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the file to _XDG_CONFIG_HOME/git/ignore_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the file to _$XDG_CONFIG_HOME/git/ignore_.\n" }, { "path": "$HOME/.git-credentials", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the file to _XDG_CONFIG_HOME/git/credentials_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the file to _$XDG_CONFIG_HOME/git/credentials_.\n" } ] } diff --git a/programs/gnuplot.json b/programs/gnuplot.json index 1ea1de2..aa8309d 100644 --- a/programs/gnuplot.json +++ b/programs/gnuplot.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Supported since _a5562b1_.\n\nYou can move the file to _XDG_STATE_HOME/gnuplot_history_.\n", + "help": "Supported since _a5562b1_.\n\nYou can move the file to _$XDG_STATE_HOME/gnuplot_history_.\n", "movable": true, "path": "$HOME/.gnuplot_history" } ], "name": "gnuplot" -} \ No newline at end of file +} diff --git a/programs/goobookrc.json b/programs/goobookrc.json index 8bd3c75..b038d23 100644 --- a/programs/goobookrc.json +++ b/programs/goobookrc.json @@ -4,7 +4,7 @@ { "path": "$HOME/.goobookrc", "movable": true, - "help": "Supported since _v3.5_.\n\nYou can move the file to _XDG_CONFIG_HOME/goobookrc_.\n" + "help": "Supported since _v3.5_.\n\nYou can move the file to _$XDG_CONFIG_HOME/goobookrc_.\n" } ] } diff --git a/programs/httpie.json b/programs/httpie.json index e3c200e..621ecd9 100644 --- a/programs/httpie.json +++ b/programs/httpie.json @@ -2,9 +2,9 @@ "name": "httpie", "files": [ { - "path": "${HOME}/.httpie", + "path": "$HOME/.httpie", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.httpie can be moved to ${XDG_CONFIG_HOME}/httpie.\n" + "help": "Supported\n\nThe file $HOME/.httpie can be moved to $XDG_CONFIG_HOME/httpie.\n" } ] } diff --git a/programs/icons.json b/programs/icons.json index 550732f..4035138 100644 --- a/programs/icons.json +++ b/programs/icons.json @@ -2,9 +2,9 @@ "name": "icons", "files": [ { - "path": "${HOME}/.icons", + "path": "$HOME/.icons", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.icons can be moved to ${XDG_DATA_HOME}/icons.\n\nIf there are cursor themes installed in _${XDG_DATA_HOME}/icons_, it may be necessary to add the path to XCURSOR_PATH. For example:\n\n```bash\nexport XCURSOR_PATH=/usr/share/icons:${XDG_DATA_HOME}/icons\n```\n\n" + "help": "Supported\n\nThe file $HOME/.icons can be moved to $XDG_DATA_HOME/icons.\n\nIf there are cursor themes installed in _$XDG_DATA_HOME/icons_, it may be necessary to add the path to XCURSOR_PATH. For example:\n\n```bash\nexport XCURSOR_PATH=/usr/share/icons:$XDG_DATA_HOME/icons\n```\n\n" } ] } diff --git a/programs/ideavim.json b/programs/ideavim.json index b295968..08f5341 100644 --- a/programs/ideavim.json +++ b/programs/ideavim.json @@ -4,7 +4,7 @@ { "path": "$HOME/.ideavimrc", "movable": true, - "help": "Supported since version 0.55. You can simply move the file to _XDG_CONFIG_HOME/ideavim/ideavimrc_.\n" + "help": "Supported since version 0.55. You can simply move the file to _$XDG_CONFIG_HOME/ideavim/ideavimrc_.\n" } ] } diff --git a/programs/ipython.json b/programs/ipython.json index 0138c14..1412af2 100644 --- a/programs/ipython.json +++ b/programs/ipython.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Supported since _8.0.0_.\n\nYou can move the file to _XDG_CONFIG_HOME/ipython_.\n\nOr set the following environment variable:\n```bash\nexport IPYTHONDIR=\"${XDG_CONFIG_HOME}/ipython\"\n```\n", + "help": "Supported since _8.0.0_.\n\nYou can move the file to _$XDG_CONFIG_HOME/ipython_.\n\nOr set the following environment variable:\n```bash\nexport IPYTHONDIR=\"$XDG_CONFIG_HOME/ipython\"\n```\n", "movable": true, "path": "$HOME/.ipython" } ], "name": "ipython" -} \ No newline at end of file +} diff --git a/programs/latexmk.json b/programs/latexmk.json index 13e152a..dea752a 100644 --- a/programs/latexmk.json +++ b/programs/latexmk.json @@ -4,7 +4,7 @@ { "path": "$HOME/.latexmkrc", "movable": true, - "help": "XDG is supported out-of-the-box, so we can simply move the file to _XDG_CONFIG_HOME/latexmk/latexmkrc_.\n" + "help": "XDG is supported out-of-the-box, so we can simply move the file to _$XDG_CONFIG_HOME/latexmk/latexmkrc_.\n" } ] } diff --git a/programs/less.json b/programs/less.json index a978785..cd7debd 100644 --- a/programs/less.json +++ b/programs/less.json @@ -3,8 +3,8 @@ { "help": "Export the following environment variables:\n\n```bash\nexport LESSHISTFILE=\"$XDG_STATE_HOME\"/less/history\n```\n", "movable": true, - "path": "${HOME}/.lesshst" + "path": "$HOME/.lesshst" } ], "name": "less" -} \ No newline at end of file +} diff --git a/programs/lnav.json b/programs/lnav.json index bb0013f..ae9921e 100644 --- a/programs/lnav.json +++ b/programs/lnav.json @@ -2,9 +2,9 @@ "name": "lnav", "files": [ { - "path": "${HOME}/.lnav", + "path": "$HOME/.lnav", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.lnav can be moved to ${XDG_CONFIG_HOME}/lnav.\n" + "help": "Supported\n\nThe file $HOME/.lnav can be moved to $XDG_CONFIG_HOME/lnav.\n" } ] } diff --git a/programs/lua.json b/programs/lua.json index 2a62e3e..c359419 100644 --- a/programs/lua.json +++ b/programs/lua.json @@ -8,7 +8,7 @@ { "path": "$HOME/.luarocks", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.luarocks can be moved to ${XDG_CONFIG_HOME}/luarocks.\n\n" + "help": "Supported\n\nThe file $HOME/.luarocks can be moved to $XDG_CONFIG_HOME/luarocks.\n\n" } ], "name": "lua" diff --git a/programs/mapscii.json b/programs/mapscii.json index f9b69bd..f9eb0f4 100644 --- a/programs/mapscii.json +++ b/programs/mapscii.json @@ -2,9 +2,9 @@ "name": "mapscii", "files": [ { - "path": "${HOME}/.mapscii", + "path": "$HOME/.mapscii", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.mapscii can be moved to ${XDG_CACHE_HOME}/mapscii.\n" + "help": "Supported\n\nThe file $HOME/.mapscii can be moved to $XDG_CACHE_HOME/mapscii.\n" } ] } diff --git a/programs/matplotlib.json b/programs/matplotlib.json index c744900..b528c98 100644 --- a/programs/matplotlib.json +++ b/programs/matplotlib.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Matplotlib will use _XDG_CONFIG_HOME/matplotlib_ and _XDG_CACHE_HOME/matplotlib_ on linux by default if the directories are writable.\n\nYou can also set the _MPLCONFIGDIR_ environment variable, see the [documentation](https://matplotlib.org/stable/users/faq/environment_variables_faq.html#envvar-MPLCONFIGDIR).\n", + "help": "Matplotlib will use _$XDG_CONFIG_HOME/matplotlib_ and _$XDG_CACHE_HOME/matplotlib_ on linux by default if the directories are writable.\n\nYou can also set the _MPLCONFIGDIR_ environment variable, see the [documentation](https://matplotlib.org/stable/users/faq/environment_variables_faq.html#envvar-MPLCONFIGDIR).\n", "movable": true, "path": "$HOME/.matplotlib" } ], "name": "matplotlib" -} \ No newline at end of file +} diff --git a/programs/mcfly.json b/programs/mcfly.json index 18d443a..0b20d09 100644 --- a/programs/mcfly.json +++ b/programs/mcfly.json @@ -3,7 +3,7 @@ { "path": "$HOME/.mcfly/history.db", "movable": true, - "help": "Luckily, the XDG spec is supported by mcfly, so we can simply move the file to _XDG_DATA_HOME/mcfly/history.db_.\n" + "help": "Luckily, the XDG spec is supported by mcfly, so we can simply move the file to _$XDG_DATA_HOME/mcfly/history.db_.\n" } ], "name": "mcfly" diff --git a/programs/mercurial.json b/programs/mercurial.json index db08545..257786a 100644 --- a/programs/mercurial.json +++ b/programs/mercurial.json @@ -4,7 +4,7 @@ { "path": "$HOME/.hgrc", "movable": true, - "help": "Supported since _v4.2_.\n\nYou can move the file to _XDG_CONFIG_HOME/hg/hgrc_.\n" + "help": "Supported since _v4.2_.\n\nYou can move the file to _$XDG_CONFIG_HOME/hg/hgrc_.\n" } ] } diff --git a/programs/msmtp.json b/programs/msmtp.json index 9233429..07ff930 100644 --- a/programs/msmtp.json +++ b/programs/msmtp.json @@ -4,7 +4,7 @@ { "path": "$HOME/.msmtprc", "movable": true, - "help": "Supported since _v1.6.7_.\n\nYou can move the file to _XDG_CONFIG_HOME/msmtp/config_.\n" + "help": "Supported since _v1.6.7_.\n\nYou can move the file to _$XDG_CONFIG_HOME/msmtp/config_.\n" } ] } diff --git a/programs/nano.json b/programs/nano.json index a4ef091..d2901f5 100644 --- a/programs/nano.json +++ b/programs/nano.json @@ -4,12 +4,12 @@ { "path": "$HOME/.nanorc", "movable": true, - "help": "XDG is partially supported since _v2.9.0_. You can move the file to _XDG_CONFIG_HOME/nano/nanorc_." + "help": "XDG is partially supported since _v2.9.0_. You can move the file to _$XDG_CONFIG_HOME/nano/nanorc_." }, { "path": "$HOME/.nano", "movable": true, - "help": "XDG is partially supported since _v2.9.0_. You can move the directory to _XDG_DATA_HOME/nano_." + "help": "XDG is partially supported since _v2.9.0_. You can move the directory to _$XDG_DATA_HOME/nano_." } ] } diff --git a/programs/netbeans.json b/programs/netbeans.json index a9246bd..9cd0796 100644 --- a/programs/netbeans.json +++ b/programs/netbeans.json @@ -3,8 +3,8 @@ { "path": "$HOME/.netbeans", "movable": true, - "help": "Alias netbeans to use a custom configuration location:\n\n```bash\nalias netbeans=netbeans --userdir \"${XDG_CONFIG_HOME}\"/netbeans\n```\n" + "help": "Alias netbeans to use a custom configuration location:\n\n```bash\nalias netbeans=netbeans --userdir \"$XDG_CONFIG_HOME\"/netbeans\n```\n" } ], "name": "netbeans" -} \ No newline at end of file +} diff --git a/programs/notmuch.json b/programs/notmuch.json index 875f6cc..a7bf16e 100644 --- a/programs/notmuch.json +++ b/programs/notmuch.json @@ -4,7 +4,7 @@ { "path": "$HOME/.notmuch-config", "movable": true, - "help": "Supported out-of-the-box.\n\nYou can move the file to _XDG_CONFIG_HOME/notmuch/default/config_.\n" + "help": "Supported out-of-the-box.\n\nYou can move the file to _$XDG_CONFIG_HOME/notmuch/default/config_.\n" } ] } diff --git a/programs/npm.json b/programs/npm.json index 7ae081b..ecca1da 100644 --- a/programs/npm.json +++ b/programs/npm.json @@ -1,7 +1,7 @@ { "files": [ { - "help": "You need to put the following into your npmrc:\n\n```\nprefix=${XDG_DATA_HOME}/npm\ncache=${XDG_CACHE_HOME}/npm\ninit-module=${XDG_CONFIG_HOME}/npm/config/npm-init.js\ntmp=${XDG_RUNTIME_DIR}/npm\n```\n\n_Note: the `tmp` option has been removed in more recent versions of npm, including it will generate a warning._\n", + "help": "You need to put the following into your npmrc:\n\n```\nprefix=$XDG_DATA_HOME/npm\ncache=$XDG_CACHE_HOME/npm\ninit-module=$XDG_CONFIG_HOME/npm/config/npm-init.js\ntmp=${XDG_RUNTIME_DIR}/npm\n```\n\n_Note: the `tmp` option has been removed in more recent versions of npm, including it will generate a warning._\n", "movable": true, "path": "$HOME/.npm" }, @@ -12,4 +12,4 @@ } ], "name": "npm" -} \ No newline at end of file +} diff --git a/programs/pandoc.json b/programs/pandoc.json index dc64b2c..98bf332 100644 --- a/programs/pandoc.json +++ b/programs/pandoc.json @@ -4,7 +4,7 @@ { "path": "$HOME/.pandoc", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.pandoc can be moved to ${XDG_DATA_HOME}/pandoc.\n" + "help": "Supported\n\nThe file $HOME/.pandoc can be moved to $XDG_DATA_HOME/pandoc.\n" } ] } diff --git a/programs/pex.json b/programs/pex.json index 2878b02..71689e7 100644 --- a/programs/pex.json +++ b/programs/pex.json @@ -2,9 +2,9 @@ "name": "pex", "files": [ { - "path": "${HOME}/.pex", + "path": "$HOME/.pex", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport PEX_ROOT=\"${XDG_CACHE_HOME}\"/pex\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport PEX_ROOT=\"$XDG_CACHE_HOME\"/pex\n```\n" } ] } diff --git a/programs/pnpm.json b/programs/pnpm.json index 5d586f8..d861e68 100644 --- a/programs/pnpm.json +++ b/programs/pnpm.json @@ -3,8 +3,8 @@ { "path": "$HOME/.pnpm-store", "movable": true, - "help": "Add the following to your npmrc:\n\n```\nstore-dir=${XDG_DATA_HOME}/pnpm-store\n```\n" + "help": "Add the following to your npmrc:\n\n```\nstore-dir=$XDG_DATA_HOME/pnpm-store\n```\n" } ], "name": "pnpm" -} \ No newline at end of file +} diff --git a/programs/pulseaudio.json b/programs/pulseaudio.json index aef3d99..7658260 100644 --- a/programs/pulseaudio.json +++ b/programs/pulseaudio.json @@ -1,12 +1,12 @@ { "files": [ { - "help": "Supported since _4.0_ according to https://bugzilla.redhat.com/show_bug.cgi?id=845607\n\nYou can move the file to _XDG_CONFIG_HOME/pulse_\n", + "help": "Supported since _4.0_ according to https://bugzilla.redhat.com/show_bug.cgi?id=845607\n\nYou can move the file to _$XDG_CONFIG_HOME/pulse_\n", "movable": true, "path": "$HOME/.pulse" }, { - "help": "Supported since _4.0_ according to https://bugzilla.redhat.com/show_bug.cgi?id=845607\n\nYou can move this file to _XDG_CONFIG_HOME/pulse/cookie_\n", + "help": "Supported since _4.0_ according to https://bugzilla.redhat.com/show_bug.cgi?id=845607\n\nYou can move this file to _$XDG_CONFIG_HOME/pulse/cookie_\n", "movable": true, "path": "$HOME/.pulse-cookie" } diff --git a/programs/pylint.json b/programs/pylint.json index ee71773..1f1a002 100644 --- a/programs/pylint.json +++ b/programs/pylint.json @@ -2,9 +2,9 @@ "name": "pylint", "files": [ { - "path": "${HOME}/.pylint.d", + "path": "$HOME/.pylint.d", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport PYLINTHOME=\"${XDG_CACHE_HOME}\"/pylint\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport PYLINTHOME=\"$XDG_CACHE_HOME\"/pylint\n```\n" } ] } diff --git a/programs/qrcp.json b/programs/qrcp.json index 4d212d7..d12e1d2 100644 --- a/programs/qrcp.json +++ b/programs/qrcp.json @@ -2,9 +2,9 @@ "name": "qrcp", "files": [ { - "path": "${HOME}/.qrcp", + "path": "$HOME/.qrcp", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.qrcp can be moved to ${XDG_CONFIG_HOME}/qrcp/config.json.\n" + "help": "Supported\n\nThe file $HOME/.qrcp can be moved to $XDG_CONFIG_HOME/qrcp/config.json.\n" } ] } diff --git a/programs/racket.json b/programs/racket.json index 71bdf71..41d84b1 100644 --- a/programs/racket.json +++ b/programs/racket.json @@ -2,9 +2,9 @@ "name": "racket", "files": [ { - "path": "${HOME}/.racket", + "path": "$HOME/.racket", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.racket can be moved to ${XDG_CONFIG_HOME}/racket.\n" + "help": "Supported\n\nThe file $HOME/.racket can be moved to $XDG_CONFIG_HOME/racket.\n" } ] } diff --git a/programs/rtorrent.json b/programs/rtorrent.json index 8463963..282b318 100644 --- a/programs/rtorrent.json +++ b/programs/rtorrent.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Supported since _6a8d332_.\n\nYou can move the file to _XDG_CONFIG_HOME/rtorrent/rtorrent.rc_.\n", + "help": "Supported since _6a8d332_.\n\nYou can move the file to _$XDG_CONFIG_HOME/rtorrent/rtorrent.rc_.\n", "movable": true, "path": "$HOME/.rtorrent.rc" } ], "name": "rtorrent" -} \ No newline at end of file +} diff --git a/programs/sandboxd.json b/programs/sandboxd.json index 1a92da3..1a39055 100644 --- a/programs/sandboxd.json +++ b/programs/sandboxd.json @@ -4,7 +4,7 @@ { "path": "$HOME/.sandboxrc", "movable": true, - "help": "Supported since commit _91e0b6a_.\n\nYou can move the file to _XDG_CONFIG_HOME/sandboxd/sandboxrc_.\n" + "help": "Supported since commit _91e0b6a_.\n\nYou can move the file to _$XDG_CONFIG_HOME/sandboxd/sandboxrc_.\n" } ] } diff --git a/programs/scummvm.json b/programs/scummvm.json index 89450c6..9abeb71 100644 --- a/programs/scummvm.json +++ b/programs/scummvm.json @@ -4,12 +4,12 @@ { "path": "$HOME/.scummvmrc", "movable": true, - "help": "Supported since commit _7d014be_.\n\nYou can move the file to _XDG_CONFIG_HOME/scummvm/scummvm.ini_.\n" + "help": "Supported since commit _7d014be_.\n\nYou can move the file to _$XDG_CONFIG_HOME/scummvm/scummvm.ini_.\n" }, { "path": "$HOME/.scummvm", "movable": true, - "help": "Supported since commit _7d014be_.\n\nYou can move the directory to _XDG_DATA_HOME/scummvm/saves_.\n" + "help": "Supported since commit _7d014be_.\n\nYou can move the directory to _$XDG_DATA_HOME/scummvm/saves_.\n" } ] } diff --git a/programs/simplescreenrecorder.json b/programs/simplescreenrecorder.json index 392a9ed..4dc8ae9 100644 --- a/programs/simplescreenrecorder.json +++ b/programs/simplescreenrecorder.json @@ -3,8 +3,8 @@ { "path": "$HOME/.ssr", "movable": true, - "help": "Uses _XDG_CONFIG_HOME/simplescreenrecorder/_ if it exists.\n" + "help": "Uses _$XDG_CONFIG_HOME/simplescreenrecorder/_ if it exists.\n" } ], "name": "simplescreenrecorder" -} \ No newline at end of file +} diff --git a/programs/sqlite.json b/programs/sqlite.json index d8df455..b7f4273 100644 --- a/programs/sqlite.json +++ b/programs/sqlite.json @@ -8,7 +8,7 @@ { "path": "$HOME/.sqliterc", "movable": true, - "help": "XDG paths are supported in version 3.41.0+, so you can move this file to _XDG_CONFIG_HOME/sqlite3/sqliterc_.\n" + "help": "XDG paths are supported in version 3.41.0+, so you can move this file to _$XDG_CONFIG_HOME/sqlite3/sqliterc_.\n" } ], "name": "sqlite" diff --git a/programs/surf.json b/programs/surf.json index 421c204..57bb2c3 100644 --- a/programs/surf.json +++ b/programs/surf.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Supported natively.\n\nYou can move the file to _XDG_CACHE_HOME/surf_ by editing the config.h file of the source code.\n", + "help": "Supported natively.\n\nYou can move the file to _$XDG_CACHE_HOME/surf_ by editing the config.h file of the source code.\n", "movable": true, "path": "$HOME/.surf" } ], "name": "surf" -} \ No newline at end of file +} diff --git a/programs/swap.json b/programs/swap.json index aad4fbc..ff4a693 100644 --- a/programs/swap.json +++ b/programs/swap.json @@ -4,7 +4,7 @@ { "path": "$HOME/.sway", "movable": true, - "help": "Supported since commit _614393c_.\n\nYou can move the file _~/.sway/config_ to _XDG_CONFIG_HOME/sway/config_.\n" + "help": "Supported since commit _614393c_.\n\nYou can move the file _~/.sway/config_ to _$XDG_CONFIG_HOME/sway/config_.\n" } ] } diff --git a/programs/taskwarrior.json b/programs/taskwarrior.json index e85b606..e8d0a34 100644 --- a/programs/taskwarrior.json +++ b/programs/taskwarrior.json @@ -8,8 +8,8 @@ { "path": "$HOME/.taskrc", "movable": true, - "help": "Supported since version _2.6_, _XDG_CONFIG_HOME/task/taskrc_ needs to exist, or task will offer to create the legacy file for you.\n" + "help": "Supported since version _2.6_, _$XDG_CONFIG_HOME/task/taskrc_ needs to exist, or task will offer to create the legacy file for you.\n" } ], "name": "taskwarrior" -} \ No newline at end of file +} diff --git a/programs/themes.json b/programs/themes.json index cac0ce6..251b21b 100644 --- a/programs/themes.json +++ b/programs/themes.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "This is probably a custom directory on your system.\n\nYou can move the file to _XDG_DATA_HOME/themes_.\n", + "help": "This is probably a custom directory on your system.\n\nYou can move the file to _$XDG_DATA_HOME/themes_.\n", "movable": true, "path": "$HOME/.themes" } ], "name": "themes" -} \ No newline at end of file +} diff --git a/programs/tig.json b/programs/tig.json index 6e7b38b..a691a41 100644 --- a/programs/tig.json +++ b/programs/tig.json @@ -2,9 +2,9 @@ "name": "tig", "files": [ { - "path": "${HOME}/.tig_history", + "path": "$HOME/.tig_history", "movable": true, - "help": "Supported\n\nThe file ${HOME}/.tig_history can be moved to ${XDG_DATA_HOME}/tig/history.\n" + "help": "Supported\n\nThe file $HOME/.tig_history can be moved to $XDG_DATA_HOME/tig/history.\n" } ] } diff --git a/programs/tmux.json b/programs/tmux.json index b6ae482..d044e34 100644 --- a/programs/tmux.json +++ b/programs/tmux.json @@ -4,7 +4,7 @@ { "path": "$HOME/.tmux.conf", "movable": true, - "help": "Supported since _v3.2_ (Partial support since _v3.1_).\n\nYou can move the file to _XDG_CONFIG_HOME/tmux/tmux.conf_.\n" + "help": "Supported since _v3.2_ (Partial support since _v3.1_).\n\nYou can move the file to _$XDG_CONFIG_HOME/tmux/tmux.conf_.\n" }, { "path": "$HOME/.tmux", diff --git a/programs/trash.json b/programs/trash.json index ee7409a..f4b13a3 100644 --- a/programs/trash.json +++ b/programs/trash.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Unless you are on macOS, this is probably a custom directory on your system, and you can move the file to _XDG_DATA_HOME/trash_.\n\nIf you are on macOS, there is probably no way to move this. See [202](https://github.com/b3nj5m1n/xdg-ninja/issues/202) for more info.\n\n", + "help": "Unless you are on macOS, this is probably a custom directory on your system, and you can move the file to _$XDG_DATA_HOME/trash_.\n\nIf you are on macOS, there is probably no way to move this. See [202](https://github.com/b3nj5m1n/xdg-ninja/issues/202) for more info.\n\n", "movable": true, "path": "$HOME/.trash" } ], "name": "trash" -} \ No newline at end of file +} diff --git a/programs/virtualbox.json b/programs/virtualbox.json index b8b7ab6..8948874 100644 --- a/programs/virtualbox.json +++ b/programs/virtualbox.json @@ -1,7 +1,7 @@ { "files": [ { - "help": "Supported since _4.3_.\n\nYou can move the file to _XDG_DATA_HOME/virtualbox_.\n\nGo in the settings of the GUI and change the default location.\n\nBe careful, that might break existing images and changing the path to their respective files is not straight forward.\n", + "help": "Supported since _4.3_.\n\nYou can move the file to _$XDG_DATA_HOME/virtualbox_.\n\nGo in the settings of the GUI and change the default location.\n\nBe careful, that might break existing images and changing the path to their respective files is not straight forward.\n", "movable": true, "path": "$HOME/.VirtualBox" } diff --git a/programs/visidata.json b/programs/visidata.json index 00c51c6..9c2ab59 100644 --- a/programs/visidata.json +++ b/programs/visidata.json @@ -1,12 +1,12 @@ { "files": [ { - "help": "Supported since version 2.9.\n\nYou can move the folder to _XDG_CACHE_HOME/visidata.\n", + "help": "Supported since version 2.9.\n\nYou can move the folder to _$XDG_CACHE_HOME/visidata.\n", "movable": true, "path": "$HOME/.visidata/" }, { - "help": "Supported since version 2.9.\n\nYou can move the file to _XDG_CONFIG_HOME/visidata/config.py.\n", + "help": "Supported since version 2.9.\n\nYou can move the file to _$XDG_CONFIG_HOME/visidata/config.py.\n", "movable": true, "path": "$HOME/.visidatarc" } diff --git a/programs/weechat.json b/programs/weechat.json index fe2f2f6..2fb5162 100644 --- a/programs/weechat.json +++ b/programs/weechat.json @@ -2,9 +2,9 @@ "name": "weechat", "files": [ { - "path": "${HOME}/.weechat", + "path": "$HOME/.weechat", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport WEECHAT_HOME=\"${XDG_CONFIG_HOME}\"/weechat\n```\nAlias weechat to use custom locations:\n\n```bash\nalias weechat=weechat -d ${XDG_CONFIG_HOME}/weechat```\n" + "help": "Export the following environment variables:\n\n```bash\nexport WEECHAT_HOME=\"$XDG_CONFIG_HOME\"/weechat\n```\nAlias weechat to use custom locations:\n\n```bash\nalias weechat=weechat -d $XDG_CONFIG_HOME/weechat```\n" } ] } diff --git a/programs/when.json b/programs/when.json index eb1f894..258ca9e 100644 --- a/programs/when.json +++ b/programs/when.json @@ -1,10 +1,10 @@ { "files": [ { - "help": "Supported natively.\n\nYou can move the file to _XDG_CONFIG_HOME/when_.\n\nDo not forget, in _XDG_CONFIG_HOME/when/preferences_, to add\n```\ncalendar = XDG_CONFIG_HOME/when/calendar\n```\n", + "help": "Supported natively.\n\nYou can move the file to _$XDG_CONFIG_HOME/when_.\n\nDo not forget, in _$XDG_CONFIG_HOME/when/preferences_, to add\n```\ncalendar = XDG_CONFIG_HOME/when/calendar\n```\n", "movable": true, "path": "$HOME/.when" } ], "name": "when" -} \ No newline at end of file +} diff --git a/programs/xcompose.json b/programs/xcompose.json index 29786d1..bfbe512 100644 --- a/programs/xcompose.json +++ b/programs/xcompose.json @@ -2,14 +2,14 @@ "name": "xcompose", "files": [ { - "path": "${HOME}/.XCompose", + "path": "$HOME/.XCompose", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport XCOMPOSEFILE=\"${XDG_CONFIG_HOME}\"/X11/xcompose\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport XCOMPOSEFILE=\"$XDG_CONFIG_HOME\"/X11/xcompose\n```\n" }, { - "path": "${HOME}/.compose-cache", + "path": "$HOME/.compose-cache", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport XCOMPOSECACHE=\"${XDG_CACHE_HOME}\"/X11/xcompose\n```\n" + "help": "Export the following environment variables:\n\n```bash\nexport XCOMPOSECACHE=\"$XDG_CACHE_HOME\"/X11/xcompose\n```\n" } ] } diff --git a/programs/xmobar.json b/programs/xmobar.json index 423605e..1039119 100644 --- a/programs/xmobar.json +++ b/programs/xmobar.json @@ -4,7 +4,7 @@ { "path": "$HOME/.xmobarrc", "movable": true, - "help": "Supported since commit _9fc6b37_.\n\nYou can move the file to _XDG_CONFIG_HOME/xmobar/xmobarrc_.\n" + "help": "Supported since commit _9fc6b37_.\n\nYou can move the file to _$XDG_CONFIG_HOME/xmobar/xmobarrc_.\n" } ] } diff --git a/programs/xonsh.json b/programs/xonsh.json index faa2fdd..b871936 100644 --- a/programs/xonsh.json +++ b/programs/xonsh.json @@ -6,7 +6,7 @@ "path": "$HOME/.xonshrc" }, { - "help": "Supported natively.\n\nYou can move the file to _XDG_DATA_HOME/oh-my-xonsh_ by adding the following to your xonshrc file:\n\n```python\n# set where oh-my-xonsh lives\nif not 'OMX_HOME' in ${...}:\n $OMX_HOME = p\"~/.oh-my-xonsh\"\n\n# clone omx if needed\nif not pf\"{$OMX_HOME}\".exists():\n git clone --depth=1 https://github.com/oh-my-xonsh/oh-my-xonsh $OMX_HOME\n\n# source oh-my-xonsh to give you the `omx` object\nsource $OMX_HOME/oh-my-xonsh.xsh\n```\n", + "help": "Supported natively.\n\nYou can move the file to _$XDG_DATA_HOME/oh-my-xonsh_ by adding the following to your xonshrc file:\n\n```python\n# set where oh-my-xonsh lives\nif not 'OMX_HOME' in ${...}:\n $OMX_HOME = p\"~/.oh-my-xonsh\"\n\n# clone omx if needed\nif not pf\"{$OMX_HOME}\".exists():\n git clone --depth=1 https://github.com/oh-my-xonsh/oh-my-xonsh $OMX_HOME\n\n# source oh-my-xonsh to give you the `omx` object\nsource $OMX_HOME/oh-my-xonsh.xsh\n```\n", "movable": true, "path": "$HOME/.oh-my-xonsh" } -- 2.47.3