diff --git a/awesomerc b/awesomerc index f2c1ba27..434410db 100644 --- a/awesomerc +++ b/awesomerc @@ -131,7 +131,7 @@ mouse tag { button = "3" - command = "toggleview" + command = "tag_toggleview" } tag { @@ -419,69 +419,69 @@ keys { modkey = {"Mod4", "Control"} key = "0" - command = "toggleview" + command = "tag_toggleview" } key { modkey = {"Mod4", "Control"} key = "1" - command = "toggleview" + command = "tag_toggleview" arg = "1" } key { modkey = {"Mod4", "Control"} key = "2" - command = "toggleview" + command = "tag_toggleview" arg = "2" } key { modkey = {"Mod4", "Control"} key = "3" - command = "toggleview" + command = "tag_toggleview" arg = "3" } key { modkey = {"Mod4", "Control"} key = "4" - command = "toggleview" + command = "tag_toggleview" arg = "4" } key { modkey = {"Mod4", "Control"} key = "5" - command = "toggleview" + command = "tag_toggleview" arg = "5" } key { modkey = {"Mod4", "Control"} key = "6" - command = "toggleview" + command = "tag_toggleview" arg = "6" } key { modkey = {"Mod4", "Control"} key = "7" - command = "toggleview" + command = "tag_toggleview" arg = "7" } key { modkey = {"Mod4", "Control"} key = "8" - command = "toggleview" + command = "tag_toggleview" arg = "8" } key { modkey = {"Mod4", "Control"} key = "9" - command = "toggleview" + command = "tag_toggleview" arg = "9" } key diff --git a/config.c b/config.c index 6da365f2..85f5e427 100644 --- a/config.c +++ b/config.c @@ -73,7 +73,7 @@ const NameFuncLink UicbList[] = { /* tag.c */ {"client_tag", uicb_client_tag}, {"client_togglefloating", uicb_client_togglefloating}, - {"toggleview", uicb_toggleview}, + {"tag_toggleview", uicb_tag_toggleview}, {"toggletag", uicb_toggletag}, {"view", uicb_view}, {"view_tag_prev_selected", uicb_tag_prev_selected}, diff --git a/tag.c b/tag.c index d1c3de9a..1b715217 100644 --- a/tag.c +++ b/tag.c @@ -137,8 +137,8 @@ uicb_toggletag(awesome_config *awesomeconf, * \ingroup ui_callback */ void -uicb_toggleview(awesome_config *awesomeconf, - const char *arg) +uicb_tag_toggleview(awesome_config *awesomeconf, + const char *arg) { unsigned int i; int j; diff --git a/tag.h b/tag.h index d279313c..50b322df 100644 --- a/tag.h +++ b/tag.h @@ -33,7 +33,7 @@ void tag_client_with_current_selected(Client *, awesome_config *); UICB_PROTO(uicb_client_tag); UICB_PROTO(uicb_client_togglefloating); UICB_PROTO(uicb_toggletag); -UICB_PROTO(uicb_toggleview); +UICB_PROTO(uicb_tag_toggleview); UICB_PROTO(uicb_view); UICB_PROTO(uicb_tag_prev_selected); UICB_PROTO(uicb_tag_viewnext);