summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-09 15:59:17 -0600
committerzachir <zachir@librem.one>2023-02-09 15:59:17 -0600
commitf5f8f106ba02f74c20f5a20e067700d4d9498a05 (patch)
treea82b3b4c0b8a8d5d2d1dfc476b7eb893b723b465
parent98e36e5087a8855bf758c95d9e90d6feae15a619 (diff)
fix rc.lua terminal + set to alacritty and change bar height
-rw-r--r--rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.lua b/rc.lua
index f21a545..6098376 100644
--- a/rc.lua
+++ b/rc.lua
@@ -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",