Change "plain" to "exact" for If's <title>
[openbox.git] / openbox / actions / showdesktop.c
blob6dc77d5e7e65aef08a6e6ff8401b29d7e4eeb8c4
1 #include "openbox/actions.h"
2 #include "openbox/screen.h"
4 static gboolean run_func(ObActionsData *data, gpointer options);
6 void action_showdesktop_startup(void)
8 actions_register("ToggleShowDesktop", NULL, NULL, run_func);
11 /* Always return FALSE because its not interactive */
12 static gboolean run_func(ObActionsData *data, gpointer options)
14 screen_show_desktop(!screen_showing_desktop, NULL);
16 return FALSE;