gh0stzk / dotfiles

BSPWM environment with 18 themes. With a theme selector to change on the fly.
GNU General Public License v3.0
3.03k stars 228 forks source link

border in focus. #315

Closed guidamiao closed 2 months ago

guidamiao commented 2 months ago

Hey, how are you? Thanks for the settings!

But I need some help, how can I set a color for when I'm in a window? For example, I have 3 windows open, but I'm in Firefox, how can I set a border with a color so I know that I'm in it?

I tried to do it directly in the bspwmrc file, but it didn't work.

Exemple: image

gh0stzk commented 2 months ago

Hello, if you want a border in focused window you nee to change the size of border in Theme.sh file in ~/.config/bspwm/rices/THEME/Theme.sh

On line 21 the var BORDER_WIDTH="0"

You also can change the colors if you dont like the one per default for the theme youare in:

bspc config normal_border_color "${black}"
    bspc config active_border_color "${green}"
    bspc config focused_border_color "${blackb}"
    bspc config presel_feedback_color "${red}"
guidamiao commented 2 months ago

Okay! Thanks!