add -of and -ob arguments for outline colors options for multi-selection

This commit is contained in:
Julien Addé
2026-01-28 15:57:20 +01:00
committed by Hiltjo Posthuma
parent 8b48986f4c
commit 7175c4880b
2 changed files with 14 additions and 0 deletions

View File

@@ -755,6 +755,10 @@ main(int argc, char *argv[])
colors[SchemeSel][ColBg] = argv[++i];
else if (!strcmp(argv[i], "-sf")) /* selected foreground color */
colors[SchemeSel][ColFg] = argv[++i];
else if (!strcmp(argv[i], "-ob")) /* outline background color */
colors[SchemeOut][ColBg] = argv[++i];
else if (!strcmp(argv[i], "-of")) /* outline foreground color */
colors[SchemeOut][ColFg] = argv[++i];
else if (!strcmp(argv[i], "-w")) /* embedding window id */
embed = argv[++i];
else