This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import datetime | |
| import math | |
| import json | |
| import os | |
| import subprocess | |
| import threading | |
| import time | |
| import typing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Allows the user to select a process with fzf, then performs the specified | |
| action on it (send SIGTERM by default). | |
| """ | |
| import argparse | |
| import os | |
| import re | |
| import shlex | |
| import subprocess |
OlderNewer