mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
[Config] Remove fake-transparency/background option.
* fake-transparency * fake-background
This commit is contained in:
parent
26964588e1
commit
d74dffa562
6 changed files with 0 additions and 35 deletions
|
@ -127,11 +127,9 @@ Settings config = {
|
||||||
.monitor = "-5",
|
.monitor = "-5",
|
||||||
/** Set filter */
|
/** Set filter */
|
||||||
.filter = NULL,
|
.filter = NULL,
|
||||||
.fake_transparency = FALSE,
|
|
||||||
.dpi = -1,
|
.dpi = -1,
|
||||||
.threads = 0,
|
.threads = 0,
|
||||||
.scroll_method = 0,
|
.scroll_method = 0,
|
||||||
.fake_background = "screenshot",
|
|
||||||
.window_format = "{w} {c} {t}",
|
.window_format = "{w} {c} {t}",
|
||||||
.click_to_exit = TRUE,
|
.click_to_exit = TRUE,
|
||||||
.theme = NULL,
|
.theme = NULL,
|
||||||
|
|
13
doc/rofi.1
13
doc/rofi.1
|
@ -1197,19 +1197,6 @@ Command to open a Desktop Entry that is a Link.
|
||||||
.PP
|
.PP
|
||||||
Make \fBrofi\fP create a pid file and check this on startup. The pid file prevents multiple \fBrofi\fP instances from running simultaneously. This is useful when running \fBrofi\fP from a key\-binding daemon.
|
Make \fBrofi\fP create a pid file and check this on startup. The pid file prevents multiple \fBrofi\fP instances from running simultaneously. This is useful when running \fBrofi\fP from a key\-binding daemon.
|
||||||
|
|
||||||
.PP
|
|
||||||
\fB\fC\-fake\-transparency\fR
|
|
||||||
|
|
||||||
.PP
|
|
||||||
Enable fake transparency. This only works with transparent background color in the theme.
|
|
||||||
|
|
||||||
.PP
|
|
||||||
\fB\fC\-fake\-background\fR
|
|
||||||
|
|
||||||
.PP
|
|
||||||
Select what to use as background for fake transparency. This can be 'background', 'screenshot' or a path to an image
|
|
||||||
file (currently only supports png).
|
|
||||||
|
|
||||||
.PP
|
.PP
|
||||||
\fB\fC\-display\-{mode}\fR \fIstring\fP
|
\fB\fC\-display\-{mode}\fR \fIstring\fP
|
||||||
|
|
||||||
|
|
|
@ -720,15 +720,6 @@ Command to open a Desktop Entry that is a Link.
|
||||||
|
|
||||||
Make **rofi** create a pid file and check this on startup. The pid file prevents multiple **rofi** instances from running simultaneously. This is useful when running **rofi** from a key-binding daemon.
|
Make **rofi** create a pid file and check this on startup. The pid file prevents multiple **rofi** instances from running simultaneously. This is useful when running **rofi** from a key-binding daemon.
|
||||||
|
|
||||||
`-fake-transparency`
|
|
||||||
|
|
||||||
Enable fake transparency. This only works with transparent background color in the theme.
|
|
||||||
|
|
||||||
`-fake-background`
|
|
||||||
|
|
||||||
Select what to use as background for fake transparency. This can be 'background', 'screenshot' or a path to an image
|
|
||||||
file (currently only supports png).
|
|
||||||
|
|
||||||
`-display-{mode}` *string*
|
`-display-{mode}` *string*
|
||||||
|
|
||||||
Set the name to use for mode. This is used as prompt and in combi-browser.
|
Set the name to use for mode. This is used as prompt and in combi-browser.
|
||||||
|
|
|
@ -146,15 +146,11 @@ typedef struct
|
||||||
char *monitor;
|
char *monitor;
|
||||||
/** filter */
|
/** filter */
|
||||||
char *filter;
|
char *filter;
|
||||||
/** bg image */
|
|
||||||
unsigned int fake_transparency;
|
|
||||||
/** dpi */
|
/** dpi */
|
||||||
int dpi;
|
int dpi;
|
||||||
/** Number threads (1 to disable) */
|
/** Number threads (1 to disable) */
|
||||||
unsigned int threads;
|
unsigned int threads;
|
||||||
unsigned int scroll_method;
|
unsigned int scroll_method;
|
||||||
/** Background type */
|
|
||||||
char *fake_background;
|
|
||||||
|
|
||||||
char *window_format;
|
char *window_format;
|
||||||
/** Click outside the window to exit */
|
/** Click outside the window to exit */
|
||||||
|
|
|
@ -881,9 +881,6 @@ void __create_window ( MenuFlags menu_flags )
|
||||||
if ( transparency ) {
|
if ( transparency ) {
|
||||||
rofi_view_setup_fake_transparency ( WIDGET ( win ), transparency );
|
rofi_view_setup_fake_transparency ( WIDGET ( win ), transparency );
|
||||||
}
|
}
|
||||||
else if ( config.fake_transparency && config.fake_background ) {
|
|
||||||
rofi_view_setup_fake_transparency ( WIDGET ( win ), config.fake_background );
|
|
||||||
}
|
|
||||||
if ( xcb->sncontext != NULL ) {
|
if ( xcb->sncontext != NULL ) {
|
||||||
sn_launchee_context_setup_window ( xcb->sncontext, CacheState.main_window );
|
sn_launchee_context_setup_window ( xcb->sncontext, CacheState.main_window );
|
||||||
}
|
}
|
||||||
|
|
|
@ -170,16 +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_Boolean, "fake-transparency", { .num = &config.fake_transparency }, NULL,
|
|
||||||
"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, "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,
|
|
||||||
"Background to use for fake transparency. (background or screenshot) *DEPRECATED*", CONFIG_DEFAULT },
|
|
||||||
{ xrm_String, "window-format", { .str = &config.window_format }, NULL,
|
{ xrm_String, "window-format", { .str = &config.window_format }, NULL,
|
||||||
"Window Format. w (desktop name), t (title), n (name), r (role), c (class)", CONFIG_DEFAULT },
|
"Window Format. w (desktop name), t (title), n (name), r (role), c (class)", CONFIG_DEFAULT },
|
||||||
{ xrm_Boolean, "click-to-exit", { .snum = &config.click_to_exit }, NULL,
|
{ xrm_Boolean, "click-to-exit", { .snum = &config.click_to_exit }, NULL,
|
||||||
|
|
Loading…
Reference in a new issue