Report Proportional Memory on Linux
Project description
rung -- A Tool for Fuzzy Procedures
rung
is a tool help navigate "fuzzy" procedures on Linux where you might want to:
- skip certain steps if certain vague criteria are met
- repeat certain steps if they failed and trying again makes sense
You very simply specify your procedures within a single .ini
file.
Quick Start: from the CLI
- If
python3 -V
shows v3.11 or later, install usingpipx
:
python3 -m pip install --user pipx # if pipx not installed
python3 -m pipx ensurepath # if needed (restart terminal)
pipx upgrade rung || pipx install rung # to install/upgrade
- Else for python3.10 and lesser versions, install using
pip
:
python3 -m pip install --user --upgrade rung
- To run:
rung # to run and show all menus
rung {menu-name} # run the specified menu
rung --edit # edit your menus
Mnemonic: step through the rungs of your laddered procedure ;-)
A Practical Example -- Manually Updating EndeavourOS
Here is an example menu for manually update an EndeavourOS:
Notes:
- Except for the first personal command, all commands are standard on EndeavourOS.
- All commands are run literally by
bash
except:exit
which means exit the menu.rung {menu-name}
runs rung recursively usingpython3
- To run a command:
- highlight the command by typing the character before the ':' or move the cursor with the up/down arrow keys.
- then press ENTER.
- After the command runs, the next command is highlighted and runs with just ENTER if desired.
- To, repeat and skip commands, just select another command rather than the next.
- IMPORTANT: If the menu does not fit within your terminal, then resize until it does fit.
Config: ~/.config/rung/rung.ini
Edit ~/.config/rung/rung.ini
to configure your menu. The "eos-update-menu" was configured by adding this section:
[eos-update]
a: my-snaps # replace snaps of root, home, etc
b: reflector-simple # update Arch mirrors
c: eos-rankmirrors # update EndeavourOS mirrors
d: eos-update --yay # EndeavourOS update script
e: sudo paccache -rk1; sudo paccache -ruk0 # cleanup cache
f: sudo pacman -Rns $(pacman -Qdtq) # cleanup orphans
g: flatpak update
h: flatpak uninstall --unused; flatpak repair
i: sudo journalctl --vacuum-time=2weeks
j: sudo reboot now
x: exit
So, the config looks nearly the same as the menu, but if you specify a multiline value, then:
- the first line is shown, and
- the subsequent lines are given to bash literally.
In this manner, for very complicated commands, you can provide a summary description of what is to be run.
rung
Command Line
usage: rung [-h] [-e] [-n] [menus ...]
positional arguments:
menus zero or more arguments
options:
-h, --help show this help message and exit
-e, --edit edit config (i.e., runs edit-rung-config)
-n, --dry-run do NOT do anything
Thus, you can:
- run
rung -e
to edit the configuration file. - run
rung
with no arguments to given a menu of all the defined menus. - provide the name specifiers of the menus to run them; each name spec can match:
- exactly,
- case independent exactly (if unique),
- or case independent substring match but only at word boundaries (if unique); e.g., for the menus,
['edit-rung-config', 'example', 'eos-update']
:- these name specs would find a menu: 'edit', 'ex', 'EOS-', 'EOS-UPDATE'
- these name specs would NOT: 'date', 'e'.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rungs-1.0.0.tar.gz
.
File metadata
- Download URL: rungs-1.0.0.tar.gz
- Upload date:
- Size: 54.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aabf33d2648212e4ce12c80a18fcfb55a4bcddbaafea755ad03b4130a285538d |
|
MD5 | e28fcfe76bbdc9f23ddabf579a7e2365 |
|
BLAKE2b-256 | 8393166d7b9ad08afd6994db5a2d42da6ee29a00aa47084703047c32b8e0345d |
Provenance
File details
Details for the file rungs-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: rungs-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca215f9360f4898807de8b5ab87b3e67be5b9b0d1cf7ed9fc0ec8592de1fa0ec |
|
MD5 | e013233a1011728e3c15c36a57c45399 |
|
BLAKE2b-256 | 13adb6754335c380317d16d5b9c985c31dacdce51b526434038f899b7a4705c4 |