Files
dotfiles/hypr/hyprland/plugins.lua
2026-08-13 00:25:52 -07:00

24 lines
687 B
Lua

if hl.plugin.gloview ~= nil then
hl.config({plugin = {
gloview = {
layout = 'rows',
blur = 1,
strip_all_card = true,
show_special = true,
above_namespaces = 'quickshell',
key_close = 'v',
key_next_workspace = 'l',
key_prev_workspace = 'k',
show_empty = true,
dynamic_workspaces = false,
}
}})
hl.bind('SUPER + K', hl.plugin.gloview.toggle, {submap_universal = true})
elseif hl.plugin.hyprexpo ~= nil then
hl.config({
hyprexpo = {
},
})
hl.bind('SUPER + K', function() hl.plugin.hyprexpo.expo('toggle') end)
end