all repos — zenUtils @ 2d8eff229896fe6e8d09de54062a63d1a331a104

misc utilities for computing zen

nmtuiWin.sh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# nmtuiWin:
# this is a wrapper around urxvt+nmtui to provide easy access to network configuration
# colors are hardcoded into the urxvt instance to give it a grey+green colorscheme
# (c) 2020 Derek Stevens <drkste@zoho.com>
# MIT License -- do whatever you want

if [ $(pgrep nmtui) -gt 0 ]; then
  exec urxvtc -geometry 80x30 +sb --depth 24 --background black --color4 black --color7 grey20 --color1 seagreen --color0 grey50 -e nmtui &
else
  killall nmtui
fi