1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

Fix wrong entry + CI.

This commit is contained in:
Dave Davenport 2016-09-08 22:56:22 +02:00
parent 91e2ecf212
commit c200709838
2 changed files with 3 additions and 1 deletions

View file

@ -96,6 +96,8 @@ rofi.scroll-method: 0
rofi.fake-background: screenshot
! "Window Format. w (desktop name), t (title), n (name), r (role), c (class)" Set from: File
rofi.window-format: w c t
! "Click outside the window to exit" Set from: Default
! rofi.click-to-exit: true
! "Pidfile location" Set from: File
rofi.pid: /tmp/1000-runtime-dir/rofi.pid
! "Paste primary selection" Set from: File

View file

@ -190,7 +190,7 @@ static XrmOption xrmOptions[] = {
"Background to use for fake transparency. (background or screenshot)", CONFIG_DEFAULT },
{ xrm_String, "window-format", { .str = &config.window_format }, NULL,
"Window Format. w (desktop name), t (title), n (name), r (role), c (class)", CONFIG_DEFAULT },
{ xrm_Boolean, "click-to-exit", { .num = &config.click_to_exit }, NULL,
{ xrm_Boolean, "click-to-exit", { .snum = &config.click_to_exit }, NULL,
"Click outside the window to exit", CONFIG_DEFAULT },
};