1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
mumd(1)
=======
Name
----
mumctl - mumd(1) controller
Synopsis
--------
mumctl <subcommand> [<args>]
Description
-----------
mumctl is a CLI controller for mumd(1), a client daemon for Mumble, a free and
open source voice chat system.
Options
-------
-h, --help ::
Prints help information.
--version ::
Prints version information.
Subcommands contain additional options.
Subcommands
-----------
mumctl channel connect <name> ::
Connect to another channel.
mumctl channel list ::
List all channels in the connected server.
mumctl completions [--bash|--fish|--zsh] ::
Generate a completion file for the specified shell.
mumctl config <key> <value> ::
Set a configuration value in the mumd(1) config-file. See mumdrc(5).
mumctl config-reload ::
Force a reload of the configuration file (e.g. after editing it externally.
mumctl connect <host> [-p|--port <port>] [username] ::
Connect to a server on the specified port. The host may be either the name
of a saved server or an IP/URL (in which case username needs to be passed
as well).
If omitted, the port defaults to 64738.
mumctl deafen ::
Deafen yourself.
mumctl disconnect ::
Disconnect from the currently connected server.
mumctl events ::
Print all events that have occured since mumd was started.
mumctl help ::
Show a help message.
mumctl message channel [-r|--recursive] <message> [<channel>...]
Sends a message to all channels specified in the list of channels.
If the recursive flag is set, the message is also sent to all subchannels in a recursive manner.
If no channels are given the message is sent to the channel currently
connected to.
mumctl message user <message> <users>
Sends a message to all users specified in the list of users.
mumctl messages [-f|--follow]
Prints all received messages since mumd was started, or since this command last was issued,
whichever happens first.
If the follow flag is set, mumctl will instead wait for new messages to come in and print
them as they come in. To exit this loop, issue a Ctrl-C.
mumctl mute [user] ::
Mute yourself or someone else.
If user is omitted, you mute yourself. Otherwise, the user with the username [user] is muted.
mumctl server add <name> <host> [--port <port>] [<username> | <username> <password>] ::
Add a saved server configuration.
mumctl server config <server> <key> <value> ::
Configure a variable in a saved server configuration.
mumctl server list ::
List all saved servers and how many are connected to them.
mumctl server remove <name> ::
Remove a saved server.
mumctl server rename <old name> <new name> ::
Rename a saved server.
mumctl status ::
Show the currently conneced channel and server.
mumctl undeafen ::
Undeafen yourself.
mumctl unmute [user] ::
Unmute yourself or someone else.
If user is omitted, unmute yourself. Otherwise, the user with the username [user] is unmuted.
mumctl volume set <volume> ::
Set the outgoing volume level.
1.0 is the default.
mumctl volume <user> set <volume> ::
Set the volume of another user's incoming audio.
1.0 is the default.
Authors
-------
Gustav Sörnäs and Eskil Queseth.
Reporting bugs
--------------
Please report bugs to the Github repository at https://github.com/mum-rs/mum/
or by e-mail to gustav@sornas.net.
See also
--------
mumd(1), mumdrc(5)
|