diff --git a/bin/omarchy-theme-set b/bin/omarchy-theme-set index 730597126d..f894ef11a0 100755 --- a/bin/omarchy-theme-set +++ b/bin/omarchy-theme-set @@ -29,6 +29,7 @@ omarchy-restart-swayosd hyprctl reload pkill -SIGUSR2 btop makoctl reload +pkill -SIGUSR1 nvim # Change gnome, browser, vscode themes omarchy-theme-set-terminal diff --git a/config/nvim/lua/plugins/chameleon.lua b/config/nvim/lua/plugins/chameleon.lua new file mode 100644 index 0000000000..b633485887 --- /dev/null +++ b/config/nvim/lua/plugins/chameleon.lua @@ -0,0 +1,16 @@ +return { + { + "tahayvr/chameleon.nvim", + lazy = false, + priority = 1000, + config = function() + require("chameleon").setup({ + system = { + symlink_path = vim.fn.expand("~/.config/omarchy/current/theme"), + debounce_ms = 100, + notify = false, + }, + }) + end, + }, +} \ No newline at end of file