summaryrefslogtreecommitdiffstats
path: root/source/rofi.c
diff options
context:
space:
mode:
authorDave Davenport <DaveDavenport@users.noreply.github.com>2019-09-20 15:05:36 +0200
committerGitHub <noreply@github.com>2019-09-20 15:05:36 +0200
commit7c613f6a4ca4354165e2cab987d0db1e7ce32c5a (patch)
tree7cede72023c550462342a9eb13123580a6e5ddaa /source/rofi.c
parentf28cf0207e7641890617e8b946977dc204e05ce2 (diff)
Issue893: Add support for @media in the theme format. (#1015)
* [Lexer] Add support for @media. Issue: #893 * [Theme] @media limit to px. * [Theme@Media] add *{} support. * [Theme@Media] Add support for monitor-id media. * [Theme@Media] Code cleanup. * [Theme@Media] Add min/max-aspect-ratio. * [Theme@Media] Remove some debug output Fixes: #893
Diffstat (limited to 'source/rofi.c')
-rw-r--r--source/rofi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/rofi.c b/source/rofi.c
index 650e788d..1bc09ebc 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -999,6 +999,9 @@ int main ( int argc, char *argv[] )
}
TICK_N ( "Setup late Display" );
+ rofi_theme_parse_process_conditionals ();
+ TICK_N ( "Theme setup" );
+
// Setup signal handling sources.
// SIGINT
g_unix_signal_add ( SIGINT, main_loop_signal_handler_int, NULL );