Making some minor improvements to awesome
This commit is contained in:
parent
a8b74e1f7b
commit
01953ff9ae
9 changed files with 26 additions and 27 deletions
|
@ -68,10 +68,10 @@
|
|||
(local alt "Mod1")
|
||||
|
||||
;; Set hostname so that we can utilize specific features on different machines
|
||||
(local hostname-handle (io.popen "hostname"))
|
||||
(local hostname (hostname-handle:read "a"))
|
||||
(global hostname-handle (io.popen "hostname"))
|
||||
(global hostname (hostname-handle:read "a"))
|
||||
(hostname-handle:close)
|
||||
(local laptop (= hostname "chris-linuxlaptop\n"))
|
||||
(global laptop (= hostname "chris-linuxlaptop\n"))
|
||||
|
||||
;; Table of layouts to cover with awful.layout.inc, order matters.
|
||||
(set awful.layout.layouts [
|
||||
|
@ -472,6 +472,8 @@
|
|||
(client.connect_signal "focus" (fn [c] (set c.border_color beautiful.border_focus)))
|
||||
(client.connect_signal "unfocus" (fn [c] (set c.border_color beautiful.border_normal)))
|
||||
|
||||
(awful.screen.focus 1)
|
||||
|
||||
(awful.spawn "picom --experimental-backend")
|
||||
(awful.spawn "xset r rate 220 90")
|
||||
(awful.spawn "/usr/lib/polkit-kde-authentication-agent-1")
|
||||
|
|
|
@ -4,19 +4,4 @@ local gears = require("gears")
|
|||
fennel.path = fennel.path .. ";.config/awesome/?.fnl"
|
||||
table.insert(package.loaders or package.searchers, fennel.searcher)
|
||||
|
||||
-- pcall(require, "luarocks.loader")
|
||||
-- -- local fennel = require("./fennel")
|
||||
-- fennel = require("./fennel")
|
||||
-- local gears = require("gears")
|
||||
-- fennel.path = fennel.path .. ";.config/awesome/?.fnl"
|
||||
-- table.insert(package.loaders or package.searchers, fennel.make_searcher({correlate=true}))
|
||||
|
||||
-- local fennel = require("./fennel")
|
||||
-- fennel.path = fennel.path .. ";.config/awesome/?.fnl"
|
||||
-- fennel.makeSearcher({
|
||||
-- correlate = true,
|
||||
-- useMetadata = true
|
||||
-- })
|
||||
-- table.insert(package.loaders or package.searchers, fennel.searcher)
|
||||
|
||||
require("init") -- load ~/.config/awesome/init.fnl
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
{
|
||||
:rule { }
|
||||
:propertites {
|
||||
:border-width beautiful.border_width
|
||||
:border_width beautiful.border_width
|
||||
:border_color beautiful.border_normal
|
||||
:focus awful.client.focus.filter
|
||||
:raise true
|
||||
;; :keys keys
|
||||
;; :buttons clientbuttons
|
||||
:screen awful.screen.preferred
|
||||
;; :screen awful.screen.preferred
|
||||
:size_hints_honor false
|
||||
:placement (+ awful.placement.no_overlap awful.placement.no_offscreen)
|
||||
;; :shape gears.shape.rounded_rect
|
||||
}
|
||||
|
|
|
@ -107,14 +107,22 @@ theme.menu_width = dpi(100)
|
|||
|
||||
-- mstab
|
||||
theme.mstab_bar_ontop = true -- whether you want to allow the bar to be ontop of clients
|
||||
theme.mstab_dont_resize_slaves = false -- whether the tabbed stack windows should be smaller than the
|
||||
theme.mstab_dont_resize_slaves = true -- whether the tabbed stack windows should be smaller than the
|
||||
-- currently focused stack window (set it to true if you use
|
||||
-- transparent terminals. False if you use shadows on solid ones
|
||||
theme.mstab_bar_padding = "default" -- how much padding there should be between clients and your tabbar
|
||||
-- by default it will adjust based on your useless gaps.
|
||||
-- If you want a custom value. Set it to the number of pixels (int)
|
||||
theme.mstab_border_radius = 10 -- border radius of the tabbar
|
||||
theme.mstab_bar_height = 50 -- height of the tabbar
|
||||
|
||||
if(laptop)
|
||||
then
|
||||
theme.mstab_bar_height = 100 -- height of the tabbar
|
||||
theme.mstab_border_radius = 20 -- border radius of the tabbar
|
||||
else
|
||||
theme.mstab_bar_height = 50
|
||||
theme.mstab_border_radius = 10 -- border radius of the tabbar
|
||||
end
|
||||
|
||||
theme.mstab_tabbar_position = "top" -- position of the tabbar (mstab currently does not support left,right)
|
||||
theme.mstab_tabbar_style = "default" -- style of the tabbar ("default", "boxes" or "modern")
|
||||
-- defaults to the tabbar_style so only change if you want a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue