summaryrefslogtreecommitdiff
path: root/default-config.json
diff options
context:
space:
mode:
authorseth <[email protected]>2022-08-06 04:31:48 -0400
committerseth <[email protected]>2022-08-06 04:31:48 -0400
commitf36a74c805cdbacaa671fd4019204ed3889bae55 (patch)
treeefa43ecad4ac5e0e6b4c45ea6766c81d8939e05a /default-config.json
parent2d53cc8a2ba81ca74ec8e2cb587bee5bd5f43e63 (diff)
stop using platform, start using subprocess
also did some more refactoring :trollfig:
Diffstat (limited to 'default-config.json')
-rw-r--r--default-config.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/default-config.json b/default-config.json
index dd4043c..4616521 100644
--- a/default-config.json
+++ b/default-config.json
@@ -1,20 +1,20 @@
{
"system_update_cmds": {
- "arch": "bash -c 'pacman -Sy --needed archlinux-keyring && pacman -Su'",
- "debian": "bash -c 'apt update && apt upgrade'",
+ "arch": "pacman -Sy --needed archlinux-keyring && pacman -Su",
+ "debian": "apt update && apt upgrade",
"fedora": "dnf upgrade"
},
"extra_cmds": {
"arch": "aur sync --upgrades --rmdeps --sign --remove --verify"
},
"clean_cmds": {
- "arch": "bash -c 'pacman -Qdtq | pacman -Rns -; exit 0'",
+ "arch": "pacman -Rns $(pacman -Qdtq); exit 0",
"debian": "apt-get --purge autoremove",
"fedora": "dnf autoremove"
},
"shell_plugin_cmds": {
- "fish": "fish -c 'fisher update'",
- "zsh": "zsh -c 'source $HOME/.config/zsh/.antidote/antidote.zsh && antidote update'"
+ "fish": "fisher update",
+ "zsh": "source $HOME/.config/zsh/.antidote/antidote.zsh && antidote update"
},
"other_cmds": {
"neovim": "nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'"