From 16f25a5be3a19e304ef4ccf116942cfd14a8678c Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:02:18 -0400 Subject: [PATCH] (nvim) set asadesuka offset to 0 --- nvim/lua/juancwu/utils/colors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/juancwu/utils/colors.lua b/nvim/lua/juancwu/utils/colors.lua index 553ba36..f966d7d 100644 --- a/nvim/lua/juancwu/utils/colors.lua +++ b/nvim/lua/juancwu/utils/colors.lua @@ -7,7 +7,7 @@ local dark = "catppuccin-mocha" function M.is_daytime() -- check if command exists or not local cmd_name = "asadesuka" - local cmd_flags = "-offset 30" + local cmd_flags = "-offset 0" local has_asadesuka = require("juancwu.utils.os").cmd_exists(cmd_name) if has_asadesuka then local handle = io.popen(cmd_name .. " " .. cmd_flags)