kwo pushed a commit to branch master.

http://git.enlightenment.org/e16/e16.git/commit/?id=924518956c1a28eb78e5c597dbe1234ee07aa83d

commit 924518956c1a28eb78e5c597dbe1234ee07aa83d
Author: Kim Woelders <[email protected]>
Date:   Mon May 4 08:13:22 2020 +0200

    groups.c: Add group del command
---
 src/groups.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/groups.c b/src/groups.c
index 1e878dad..bc4884ad 100644
--- a/src/groups.c
+++ b/src/groups.c
@@ -1284,6 +1284,11 @@ IPC_Group(const char *params)
        _GroupShow(group);
        return;
      }
+   else if (!strcmp(operation, "del"))
+     {
+       _GroupDelete(group);
+       return;
+     }
 
    if (!param1[0])
      {
@@ -1420,6 +1425,7 @@ static const IpcItem GroupsIpcArray[] = {
     "Available group commands are:\n"
     "  group info\n"
     "  group <groupid> info\n"
+    "  group <groupid> del\n"
     "  group <groupid> iconify <on/off/?>\n"
     "  group <groupid> kill <on/off/?>\n"
     "  group <groupid> move <on/off/?>\n"

-- 


Reply via email to