This commit is contained in:
2026-05-28 01:31:30 -04:00
commit 88a4ce1e05
49 changed files with 1391 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
local M = {}
local bind = require("lua.lib.bind")
local function start_waybar()
hl.exec_cmd("~/dotfiles/waybar/launch.sh")
end
M.autostart = {
start_waybar,
}
M.binds = {
function()
bind.leader_key("SHIFT + B", hl.dsp.exec_cmd("~/dotfiles/waybar/launch.sh"), "(re)launch waybar", {})
bind.leader_key("CTRL + B", hl.dsp.exec_cmd("~/dotfiles/waybar/toggle.sh"), "toggle waybar", {})
end,
}
return M