From d940c5b44ac3e3f0a931dc13ece4d00775f9d90c Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Sat, 20 Apr 2024 13:17:48 -0700 Subject: [PATCH] Add .config/topgrade.d/10-flatpak.toml Add .config/topgrade.d/10-windows.toml Add .config/topgrade.d/20-containers.toml Add .config/topgrade.d/20-distrobox.toml Add .config/topgrade.d/20-yarn.toml Add .config/topgrade.d/30-vagrant.toml Add .config/topgrade.d/30-vim.toml Change attributes of .config/topgrade.d/20-composer.toml Change attributes of .config/topgrade.d/20-git.toml Change attributes of .config/topgrade.d/20-npm.toml --- dot_config/topgrade.d/10-flatpak.toml | 3 +++ dot_config/topgrade.d/10-windows.toml | 14 ++++++++++++++ .../{10-composer.toml => 20-composer.toml} | 0 dot_config/topgrade.d/20-containers.toml | 3 +++ dot_config/topgrade.d/20-distrobox.toml | 4 ++++ dot_config/topgrade.d/{10-git.toml => 20-git.toml} | 0 dot_config/topgrade.d/{10-npm.toml => 20-npm.toml} | 0 dot_config/topgrade.d/20-yarn.toml | 3 +++ dot_config/topgrade.d/30-vagrant.toml | 9 +++++++++ dot_config/topgrade.d/30-vim.toml | 3 +++ 10 files changed, 39 insertions(+) create mode 100644 dot_config/topgrade.d/10-flatpak.toml create mode 100644 dot_config/topgrade.d/10-windows.toml rename dot_config/topgrade.d/{10-composer.toml => 20-composer.toml} (100%) create mode 100644 dot_config/topgrade.d/20-containers.toml create mode 100644 dot_config/topgrade.d/20-distrobox.toml rename dot_config/topgrade.d/{10-git.toml => 20-git.toml} (100%) rename dot_config/topgrade.d/{10-npm.toml => 20-npm.toml} (100%) create mode 100644 dot_config/topgrade.d/20-yarn.toml create mode 100644 dot_config/topgrade.d/30-vagrant.toml create mode 100644 dot_config/topgrade.d/30-vim.toml diff --git a/dot_config/topgrade.d/10-flatpak.toml b/dot_config/topgrade.d/10-flatpak.toml new file mode 100644 index 0000000..75a19bd --- /dev/null +++ b/dot_config/topgrade.d/10-flatpak.toml @@ -0,0 +1,3 @@ +[flatpak] +# Use sudo for updating the system-wide installation +# use_sudo = true diff --git a/dot_config/topgrade.d/10-windows.toml b/dot_config/topgrade.d/10-windows.toml new file mode 100644 index 0000000..86bf3c0 --- /dev/null +++ b/dot_config/topgrade.d/10-windows.toml @@ -0,0 +1,14 @@ +[windows] +# Manually select Windows updates +# accept_all_updates = false + +# open_remotes_in_new_terminal = true + +# wsl_update_pre_release = true + +# wsl_update_use_web_download = true + +# Causes Topgrade to rename itself during the run to allow package managers +# to upgrade it. Use this only if you installed Topgrade by using a package +# manager such as Scoop or Cargo +# self_rename = true diff --git a/dot_config/topgrade.d/10-composer.toml b/dot_config/topgrade.d/20-composer.toml similarity index 100% rename from dot_config/topgrade.d/10-composer.toml rename to dot_config/topgrade.d/20-composer.toml diff --git a/dot_config/topgrade.d/20-containers.toml b/dot_config/topgrade.d/20-containers.toml new file mode 100644 index 0000000..25a22a3 --- /dev/null +++ b/dot_config/topgrade.d/20-containers.toml @@ -0,0 +1,3 @@ +[containers] +# Specify the containers to ignore while updating (Wildcard supported) +# ignored_containers = ["ghcr.io/rancher-sandbox/rancher-desktop/rdx-proxy:latest", "docker.io*"] diff --git a/dot_config/topgrade.d/20-distrobox.toml b/dot_config/topgrade.d/20-distrobox.toml new file mode 100644 index 0000000..4c990be --- /dev/null +++ b/dot_config/topgrade.d/20-distrobox.toml @@ -0,0 +1,4 @@ +[distrobox] +# use_root = false + +# containers = ["archlinux-latest"] diff --git a/dot_config/topgrade.d/10-git.toml b/dot_config/topgrade.d/20-git.toml similarity index 100% rename from dot_config/topgrade.d/10-git.toml rename to dot_config/topgrade.d/20-git.toml diff --git a/dot_config/topgrade.d/10-npm.toml b/dot_config/topgrade.d/20-npm.toml similarity index 100% rename from dot_config/topgrade.d/10-npm.toml rename to dot_config/topgrade.d/20-npm.toml diff --git a/dot_config/topgrade.d/20-yarn.toml b/dot_config/topgrade.d/20-yarn.toml new file mode 100644 index 0000000..2832f78 --- /dev/null +++ b/dot_config/topgrade.d/20-yarn.toml @@ -0,0 +1,3 @@ +[yarn] +# Run `yarn global upgrade` with `sudo` +# use_sudo = true diff --git a/dot_config/topgrade.d/30-vagrant.toml b/dot_config/topgrade.d/30-vagrant.toml new file mode 100644 index 0000000..e82f4d5 --- /dev/null +++ b/dot_config/topgrade.d/30-vagrant.toml @@ -0,0 +1,9 @@ +[vagrant] +# Vagrant directories +# directories = [] + +# power on vagrant boxes if needed +# power_on = true + +# Always suspend vagrant boxes instead of powering off +# always_suspend = true diff --git a/dot_config/topgrade.d/30-vim.toml b/dot_config/topgrade.d/30-vim.toml new file mode 100644 index 0000000..8da1293 --- /dev/null +++ b/dot_config/topgrade.d/30-vim.toml @@ -0,0 +1,3 @@ +[vim] +# For `vim-plug`, execute `PlugUpdate!` instead of `PlugUpdate` +# force_plug_update = true