summaryrefslogtreecommitdiffstats
path: root/input/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'input/input.c')
-rw-r--r--input/input.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/input/input.c b/input/input.c
index a1ab808125..3cae41bfff 100644
--- a/input/input.c
+++ b/input/input.c
@@ -852,6 +852,14 @@ mp_cmd_t *mp_input_parse_cmd(bstr str)
if (eat_token(&str, "no-osd")) {
on_osd = MP_ON_OSD_NO;
+ } else if (eat_token(&str, "osd-bar")) {
+ on_osd = MP_ON_OSD_BAR;
+ } else if (eat_token(&str, "osd-msg")) {
+ on_osd = MP_ON_OSD_MSG;
+ } else if (eat_token(&str, "osd-msg-bar")) {
+ on_osd = MP_ON_OSD_MSG | MP_ON_OSD_BAR;
+ } else if (eat_token(&str, "osd-auto")) {
+ // default
}
int cmd_idx = 0;