mirror of
https://github.com/davatorium/rofi.git
synced 2025-02-10 15:44:41 -05:00
[Config] Remove old unused options.
This commit is contained in:
parent
d4a73278f2
commit
e0a3067f69
3 changed files with 0 additions and 16 deletions
|
@ -127,15 +127,10 @@ Settings config = {
|
||||||
.monitor = "-5",
|
.monitor = "-5",
|
||||||
/** Set filter */
|
/** Set filter */
|
||||||
.filter = NULL,
|
.filter = NULL,
|
||||||
/** Separator style: dash/solid */
|
|
||||||
.separator_style = "dash",
|
|
||||||
/** Hide scrollbar */
|
|
||||||
.hide_scrollbar = FALSE,
|
|
||||||
.fake_transparency = FALSE,
|
.fake_transparency = FALSE,
|
||||||
.dpi = -1,
|
.dpi = -1,
|
||||||
.threads = 0,
|
.threads = 0,
|
||||||
.scroll_method = 0,
|
.scroll_method = 0,
|
||||||
.scrollbar_width = 8,
|
|
||||||
.fake_background = "screenshot",
|
.fake_background = "screenshot",
|
||||||
.window_format = "{w} {c} {t}",
|
.window_format = "{w} {c} {t}",
|
||||||
.click_to_exit = TRUE,
|
.click_to_exit = TRUE,
|
||||||
|
|
|
@ -146,10 +146,6 @@ typedef struct
|
||||||
char *monitor;
|
char *monitor;
|
||||||
/** filter */
|
/** filter */
|
||||||
char *filter;
|
char *filter;
|
||||||
/** style */
|
|
||||||
char *separator_style;
|
|
||||||
/** hide scrollbar */
|
|
||||||
unsigned int hide_scrollbar;
|
|
||||||
/** bg image */
|
/** bg image */
|
||||||
unsigned int fake_transparency;
|
unsigned int fake_transparency;
|
||||||
/** dpi */
|
/** dpi */
|
||||||
|
@ -157,7 +153,6 @@ typedef struct
|
||||||
/** Number threads (1 to disable) */
|
/** Number threads (1 to disable) */
|
||||||
unsigned int threads;
|
unsigned int threads;
|
||||||
unsigned int scroll_method;
|
unsigned int scroll_method;
|
||||||
unsigned int scrollbar_width;
|
|
||||||
/** Background type */
|
/** Background type */
|
||||||
char *fake_background;
|
char *fake_background;
|
||||||
|
|
||||||
|
|
|
@ -170,18 +170,12 @@ static XrmOption xrmOptions[] = {
|
||||||
"Monitor id to show on", CONFIG_DEFAULT },
|
"Monitor id to show on", CONFIG_DEFAULT },
|
||||||
{ xrm_String, "filter", { .str = &config.filter }, NULL,
|
{ xrm_String, "filter", { .str = &config.filter }, NULL,
|
||||||
"Pre-set filter", CONFIG_DEFAULT },
|
"Pre-set filter", CONFIG_DEFAULT },
|
||||||
{ xrm_String, "separator-style", { .str = &config.separator_style }, NULL,
|
|
||||||
"Separator style (none, dash, solid) *DEPRECATED*", CONFIG_DEFAULT },
|
|
||||||
{ xrm_Boolean, "hide-scrollbar", { .num = &config.hide_scrollbar }, NULL,
|
|
||||||
"Hide scroll-bar *DEPRECATED*", CONFIG_DEFAULT },
|
|
||||||
{ xrm_Boolean, "fake-transparency", { .num = &config.fake_transparency }, NULL,
|
{ xrm_Boolean, "fake-transparency", { .num = &config.fake_transparency }, NULL,
|
||||||
"Fake transparency *DEPRECATED*", CONFIG_DEFAULT },
|
"Fake transparency *DEPRECATED*", CONFIG_DEFAULT },
|
||||||
{ xrm_SNumber, "dpi", { .snum = &config.dpi }, NULL,
|
{ xrm_SNumber, "dpi", { .snum = &config.dpi }, NULL,
|
||||||
"DPI", CONFIG_DEFAULT },
|
"DPI", CONFIG_DEFAULT },
|
||||||
{ xrm_Number, "threads", { .num = &config.threads }, NULL,
|
{ xrm_Number, "threads", { .num = &config.threads }, NULL,
|
||||||
"Threads to use for string matching", CONFIG_DEFAULT },
|
"Threads to use for string matching", CONFIG_DEFAULT },
|
||||||
{ xrm_Number, "scrollbar-width", { .num = &config.scrollbar_width }, NULL,
|
|
||||||
"Scrollbar width *DEPRECATED*", CONFIG_DEFAULT },
|
|
||||||
{ xrm_Number, "scroll-method", { .num = &config.scroll_method }, NULL,
|
{ xrm_Number, "scroll-method", { .num = &config.scroll_method }, NULL,
|
||||||
"Scrolling method. (0: Page, 1: Centered)", CONFIG_DEFAULT },
|
"Scrolling method. (0: Page, 1: Centered)", CONFIG_DEFAULT },
|
||||||
{ xrm_String, "fake-background", { .str = &config.fake_background }, NULL,
|
{ xrm_String, "fake-background", { .str = &config.fake_background }, NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue