diff options
-rw-r--r-- | rc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -80,7 +80,7 @@ local spawnatbottom = true -- This is used later as the default terminal and editor to run. -terminal = "st" +terminal = "alacritty" editor = os.getenv("EDITOR") or "nvim" editor_cmd = terminal .. " -e " .. editor @@ -269,7 +269,7 @@ awful.screen.connect_for_each_screen(function(s) } -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = 24}) + s.mywibox = awful.wibar({ position = "top", screen = s, height = 30}) if (crcparse("snd") == "pipewire") or (crcparse("snd") == "pulseaudio") or (crcparse("snd") == "pulse") then snd="pulse" @@ -430,7 +430,7 @@ globalkeys = gears.table.join( --end, --{description = "view next", group = "tag"}), awful.key({modkey, }, "Return", function () - awful.spawn.with_shell("st") + awful.spawn.with_shell(terminal) end, {description = "Spawn terminal", group = "spawn"}), awful.key({ modkey, }, "j", |