Reputation: 181
So, Im slowly learning lua, awesomewm, and how to configure my os. Now I have a beautiful terminal, but it has no padding, so characters basically touch the edge and its not very aesthetic. Im not sure if I should configure my rc.lua (awesomewm config file) or the alacritty config file. Here is a picture.
https://i.sstatic.net/la5AV.png
EDIT:
¦ -- Terminal config
¦ {
¦ ¦ rule_any = {
¦ ¦ ¦ class = {
¦ ¦ ¦ ¦ "Alacritty",
¦ ¦ ¦ },
¦ ¦ }, properties = {beautiful.useless_gap = 200}
¦ },
I just tried this snippet but it returns an error.
Upvotes: 3
Views: 17432
Reputation: 2401
You're likely looking for Alacritty's padding options.
window:
padding:
x: 0
y: 0
Increasing gap
s in Awesome will increase the space between windows, but it won't change anything about what a single window renders inside its boundaries.
Upvotes: 16
Reputation: 2762
You are looking to adding a "gap" to the "tag layout". See https://awesomewm.org/apidoc/core_components/tag.html#gap . The easiest way is to set this theme variable https://awesomewm.org/apidoc/core_components/tag.html#beautiful.useless_gap
Upvotes: 1