summaryrefslogtreecommitdiff
path: root/dmenu_multicmd
blob: 2c252931bf6dc572634c9cbbf7c1b71eb4caeab2 (plain)
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
#!/usr/bin/env python3
#pylint: disable=C0111
# config example (cmd_pre and cmd_post are optional):
# ---
# name: test
# cmd_pre:
#   - [/usr/bin/notify_send, 'I am precmd1!']
#   - [/usr/bin/notify_send, 'I am precmd2!']
# multicmd:
#   selection1:
#     - [/usr/bin/notify-send, 'I am command1 for selection1!']
#     - [/usr/bin/notify-send, 'I am command2 for selection1!']
#   selection2:
#     - [/usr/bin/notify-send, 'I am command1 for selection2!']
# cmd_post:
#   - [/usr/bin/notify_send, 'I am postcmd1!']
#   - [/usr/bin/notify_send, 'I am postcmd2!']
# ---
import subprocess
import sys
import yaml

def run_cmd(cmd, stdin=subprocess.PIPE, data=None):
    proc = subprocess.Popen(
        cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=stdin
    )
    stdout, stderr = (i.strip() for i in proc.communicate(data))
    if proc.returncode:
        err_msg = ['ERROR (' + str(proc.returncode) + '): ' + ' '.join(cmd)]
        if stdout:
            err_msg.append('out:\n' + stdout.decode('UTF-8'))
        if stderr:
            err_msg.append('err:\n' + stderr.decode('UTF-8'))
        sys.stderr.write('\n'.join(err_msg) + '\n')
    return stdout

def main():
    config_path = sys.argv[1]
    with open(config_path, mode='r') as config:
        conf = yaml.safe_load(config.read())
    dmenu_cmd = ['/usr/bin/dmenu', '-p', conf.get('name', 'N/A')] + sys.argv[2:]
    dmenu_opt = '\n'.join(conf['multicmd']).encode()
    selection = run_cmd(dmenu_cmd, data=dmenu_opt).decode('UTF-8')
    #selection = sys.argv[2]
    if not selection in conf['multicmd']:
        sys.exit(1)
    cmds =\
        conf.get('cmd_pre', list()) +\
        conf['multicmd'][selection] +\
        conf.get('cmd_post', list())
    for cmd in cmds:
        run_cmd(cmd)

if __name__ == '__main__':
    main()