Update defaults, add new issue

This commit is contained in:
speediegq 2022-10-04 16:22:49 +02:00
parent b642eed2e0
commit f1e2566357
3 changed files with 3 additions and 2 deletions

1
TODO
View file

@ -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

View file

@ -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.
!!

View file

@ -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