Sway Edition - General Conversation!

I don’t know how well it will work but you could place the wofi window in down right corner, when it is the power menu that is pressed.

Am I right thinking we are creating three different wofi configs? Or are you configuring wofi via that script?

It is way easier to make three config files. I don’t know with style.css files. Lets see how powermenu and screenshot works with the one we make default, and then we can see.

1 Like

What are your thoughts on this? I might get rid of the black line

2021-01-23T14:14:13,487447746+00:00

2021-01-23T14:13:55,640888544+00:00

The Config

/*
Arc-Dark Color Scheme
*/

@define-color blue #5291e2;
@define-color grey1 #404552;
@define-color grey2 #383C4A;


*{
    font-family: UbuntuMono;
}

window {
}

#input {
    margin-bottom: 10px;
    border-radius: 5px;
    border:none;
    color: white;
}

#inner-box {
    background-color: @grey2;

}

#outer-box {
    margin: 5px;
    padding:15px;
    background-color: @grey2;
}

#scroll {
}

#text {
padding: 5px;
color: white;
}

#entry:nth-child(even){
    background-color: @grey1;
}

#entry:selected {
    background-color: @blue;
}

#text:selected {
}

Thoughts??

2021-01-23T19:05:45,988772425+00:00

Waybar
2021-01-23T19:06:54,448847384+00:00

2 Likes

This is great work!

I would say go without the black bar and on waybar I would make the blue line a little thincker i think. The outer padding is too large for my taste, but it certainly isn’t a dealbreaker. In general this is really nice.

The extra lines below the screenshot selector we can remove in the config, where we define the number of lines, so this will also look a little tighter.

Thank you!

2 Likes

I’ll decrease the padding when I push it. :laughing:

Nice to know you like it!! :blush:

Ooo and I also wanna try to implement the thing @joekamprad wanted. That would be kinda cool and useful too.

1 Like

I was considering trying to build a parser that could create the entries for a keybinding overview, so that it would stay correct even when keybindinds are changed. Not a short term thing. @joekamprad would endevour consider include a binary if it works out dell?

I’m !@joekamprad would be up for it, maybe he’ll use it i3 as well.

It’s more of a long term thing like you said but sounds very exciting. :heart_eyes: :crazy_face:

Mako

This?
2021-01-24T11:41:41,737265824+00:00

Or This?
2021-01-24T11:43:30,863646550+00:00

2021-01-24T11:43:57,675845757+00:00

I would go for top one. Maybe the middle for warnings?

Do Arc have some defaults colours for error etc?

2 Likes

Would you push the changes that you have made @OdiousImp? Then I can have a look at the config files for wofi.

10mins sorry busy

@morten-b pushed!

The colours are defined using the ArcDark pallte you sent. But are not in a separate file yet. You can do that if you want.

@morten-b we do not need seperate configs for power-menu or screenshot, we can set them in the script

selected=$(printf '%s\n' $entries | wofi --width 100 --lines 4 --show=dmenu --cache-file /dev/null | awk '{print tolower($1)}')

Lines 4 will set 4 lines

1 Like