diff --git a/TODO b/TODO index b864f42..d682dbb 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,6 @@ speedwm 0.4 to-do list - Fix crashing when clicking on the first character on the status bar (speedwm restarts itself on crash so it's not a big deal) - Fix first systray icon being transparent/black (This is an issue with the patch itself) +- Fix full screen when using rounded corners (Temporary solution: Disable roundedcorners in speedwmrc) - Add compatibility with the tcc compiler (Main issue is the transparency) - Check musl, NixOS and BSD support diff --git a/docs/example.Xresources b/docs/example.Xresources index 94adfc2..a935201 100644 --- a/docs/example.Xresources +++ b/docs/example.Xresources @@ -369,7 +369,7 @@ !! !! Rounded corners. If set to 1, rounded corners will be drawn. Otherwise sharp corners will be used instead. (1/0) !! - - speedwm.roundedcorners: 1 + - speedwm.roundedcorners: 0 !! !! Corner radius of rounded corners, lower is sharper. !! diff --git a/options.h b/options.h index 3bf3c25..3907139 100644 --- a/options.h +++ b/options.h @@ -135,7 +135,7 @@ static Bool bUseOpacity = True; /* Starts with opacity on /* Rounded corners */ #if USEROUNDCORNERS -static int roundedcorners = 1; /* Enable (1) rounded corners or disable (0) rounded corners. */ +static int roundedcorners = 0; /* Enable (1) rounded corners or disable (0) rounded corners. */ static int cornerradius = 2; /* Radius of rounded corners, 10 is the default. */ #endif