summaryrefslogtreecommitdiffstats
path: root/source/xrmoptions.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-03-05 18:28:39 +0100
committerDave Davenport <qball@gmpclient.org>2016-03-05 18:28:39 +0100
commitd99111c73b29ff3b047e911fb02c82e3e2dc8bea (patch)
tree39d18f54e8608350a2897522f7d5f8d48f4e68e0 /source/xrmoptions.c
parentbfd338dfc89d22c5366f9a5aa0391c279701243e (diff)
Remove deprecated theme system.
Diffstat (limited to 'source/xrmoptions.c')
-rw-r--r--source/xrmoptions.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/source/xrmoptions.c b/source/xrmoptions.c
index 6fff1015..2ac9bcbd 100644
--- a/source/xrmoptions.c
+++ b/source/xrmoptions.c
@@ -71,34 +71,6 @@ static XrmOption xrmOptions[] = {
{ xrm_Number, "columns", { .num = &config.menu_columns }, NULL, "Number of columns" },
{ xrm_String, "font", { .str = &config.menu_font }, NULL, "Font to use" },
- /* Foreground color */
- { xrm_String, "foreground", { .str = &config.menu_fg }, NULL, "" },
- { xrm_String, "fg", { .str = &config.menu_fg }, NULL, "Foreground color" },
- { xrm_String, "background", { .str = &config.menu_bg }, NULL, "" },
- { xrm_String, "bg", { .str = &config.menu_bg }, NULL, "Background color" },
-
- { xrm_String, "fg-active", { .str = &config.menu_fg_active }, NULL, "Foreground color for active row" },
- { xrm_String, "fg-urgent", { .str = &config.menu_fg_urgent }, NULL, "Foreground color for urgent row" },
- { xrm_String, "hlfg-active", { .str = &config.menu_hlfg_active }, NULL, "Foreground color for highlighted active row" },
- { xrm_String, "hlfg-urgent", { .str = &config.menu_hlfg_urgent }, NULL, "Foreground color for highlighted urgent row" },
-
- { xrm_String, "bg-active", { .str = &config.menu_bg_active }, NULL, "Background color for active row" },
- { xrm_String, "bg-urgent", { .str = &config.menu_bg_urgent }, NULL, "Background color for urgent row" },
- { xrm_String, "hlbg-active", { .str = &config.menu_hlbg_active }, NULL, "Background color for highlighted active row" },
- { xrm_String, "hlbg-urgent", { .str = &config.menu_hlbg_urgent }, NULL, "Background color for highlighted urgent row" },
-
- { xrm_String, "background-alternate", { .str = &config.menu_bg_alt }, NULL, "" },
- { xrm_String, "bgalt", { .str = &config.menu_bg_alt }, NULL, "Background color for alternating row" },
-
- { xrm_String, "highlightfg", { .str = &config.menu_hlfg }, NULL, "" },
- { xrm_String, "hlfg", { .str = &config.menu_hlfg }, NULL, "Foreground color for highlighted row" },
-
- { xrm_String, "highlightbg", { .str = &config.menu_hlbg }, NULL, "" },
- { xrm_String, "hlbg", { .str = &config.menu_hlbg }, NULL, "Background color for highlighted row" },
-
- { xrm_String, "bordercolor", { .str = &config.menu_bc }, NULL, "" },
- { xrm_String, "bc", { .str = &config.menu_bc }, NULL, "Border color" },
- { xrm_Boolean, "color-enabled", { .num = &config.color_enabled }, NULL, "Use extended color scheme" },
{ xrm_String, "color-normal", { .str = &config.color_normal }, NULL, "Color scheme for normal row" },
{ xrm_String, "color-urgent", { .str = &config.color_urgent }, NULL, "Color scheme for urgent row" },
{ xrm_String, "color-active", { .str = &config.color_active }, NULL, "Color scheme for active row" },
@@ -547,10 +519,6 @@ void print_help_msg ( const char *option, const char *type, const char*text, con
void config_parse_xresources_theme_dump ( void )
{
- if ( config.color_enabled != TRUE ) {
- printf ( "! Dumping theme only works for the extended color scheme.\n" );
- return;
- }
printf ( "! ------------------------------------------------------------------------------\n" );
printf ( "! ROFI Color theme\n" );
printf ( "! User: %s\n", g_get_user_name () );