From 83d18f89048110ae6008b645bf43525299ac4756 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Sun, 10 Sep 2023 15:04:16 +0200 Subject: [PATCH] add hyprland as a default option to mzteinit --- cg_opts.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/cg_opts.lua b/cg_opts.lua index d30bbe3..630aba3 100644 --- a/cg_opts.lua +++ b/cg_opts.lua @@ -2,6 +2,7 @@ local opts = {} opts.mzteinit_entries = { { key = "x", label = "startx", cmd = { "startx" } }, + { key = "h", label = "hyprland", cmd = { "Hyprland" } }, { key = "s", label = "shell", cmd = { "fish" } }, { key = "l", label = "logout", cmd = { "!quit" } }, { key = "p", label = "shutdown", cmd = { "systemctl", "poweroff" }, quit = true },