diff --git a/modules/binds.lua b/modules/binds.lua index 8810c3f..3897668 100644 --- a/modules/binds.lua +++ b/modules/binds.lua @@ -43,7 +43,7 @@ hl.bind("SUPER + mouse_up", hl.dsp.workspace("e-1")) hl.bind("SUPER + G", hl.dsp.togglegroup()) hl.bind("SUPER + TAB", hl.dsp.changegroupactive()) -hl.bind("SUPER + F", hl.dsp.fullscreen()) +hl.bind("SUPER + F", hl.dsp.window.fullscreen()) hl.bind("SUPER + D", hl.dsp.exec_cmd("fuzzel")) hl.bind( "XF86AudioRaiseVolume", diff --git a/modules/executes.lua b/modules/executes.lua index d4b5824..9061232 100644 --- a/modules/executes.lua +++ b/modules/executes.lua @@ -1,8 +1,8 @@ hl.on("hyprland.start", function() - hl.exec.cmd("zshell-cli shell start") - hl.exec.cmd("nm-applet") - hl.exec.cmd("fcitx5") - hl.exec.cmd("wl-paste --type text --watch cliphist store") - hl.exec.cmd("wl-paste --type image --watch cliphist store") - hl.exec.cmd("hyprsunset -i") + hl.exec_cmd("zshell-cli shell start") + hl.exec_cmd("nm-applet") + hl.exec_cmd("fcitx5") + hl.exec_cmd("wl-paste --type text --watch cliphist store") + hl.exec_cmd("wl-paste --type image --watch cliphist store") + hl.exec_cmd("hyprsunset -i") end)