Update xresources

This commit is contained in:
speediegq 2022-10-02 15:39:50 +02:00
parent 20fcadd6e3
commit a580d5b99c
2 changed files with 17 additions and 1 deletions

View file

@ -210,6 +210,22 @@
!!
- speedwm.barheight: 5
!!
!! Show systray by default or not (1/0)
!!
- speedwm.showsystray: 0
!!
!! Show systray on the right or in between the window title and status bar (0/1)
!!
- speedwm.systrayonleft: 0
!!
!! Systray spacing in pixels
!!
- speedwm.systrayspacing: 2
!!
!! Pin systray to focused monitor or to a fixed monitor (0/<1)
!!
- speedwm.systraypinning: 0
!!
!! Center floating windows automatically when spawned. If set to 1, floating windows will be centered when spawned. Otherwise they will be spawned in the top left corner. (1/0)
!!
- speedwm.centerfloating: 1

View file

@ -219,7 +219,7 @@ static int layoutposition = 1; /* Layout indicator on the le
/* Systray options */
#if USESYSTRAY
static int systraypinning = 0; /* Show systray on focused monitor (1) or (<monitor number>) to pin to a specific monitor */
static int systraypinning = 0; /* Show systray on focused monitor (0) or (<monitor number>) to pin to a specific monitor */
static int systrayonleft = 0; /* Systray position. Right: 0, Left: 1. */
static int systrayspacing = 2; /* Systray spacing in pixels */
static int showsystray = 0; /* Show systray by default (0) or show (1) */