WillPower3309 / awesome-dotfiles

Dotfiles for awesome people using the awesomewm linux environment
1.17k stars 68 forks source link

get maximize minimize button in pastel #63

Closed Adithyan007hack closed 1 year ago

Adithyan007hack commented 1 year ago

how can i get maximize minimize button from mirage theme in pastel because not a fan of close button in top bar in pastel

Adithyan007hack commented 1 year ago

And plank is not working as intended https://www.reddit.com/r/awesomewm/comments/gh0p92/issue_with_awesome_and_plank/ this reddit thread has a answer but i dont know how to apply it.

one more thing how can i prioritize floating over tiling when log in

WillPower3309 commented 1 year ago

to get titlebars: add

require("components.mirage.titlebar")

in pastel.lua

WillPower3309 commented 1 year ago

To get floating by default, edit line 41 in pastel.lua to be layout = awful.layout.suit.floating,.

WillPower3309 commented 1 year ago

For plank, add

{
    rule_any = {
        name = {
            "plank"
        }
    },
    properties = {
        ontop = true
    }
}

in the rules.create() return block to rules.lua

Adithyan007hack commented 1 year ago

thank you so much :)