ThisPy is a simple bash tool to select and run Python files from the current directory using a TUI (Text User Interface) within the Terminal. There’s no need to type or copy-paste long python filenames, keeping your clipboard free for other tasks. Files are automatically sorted by last modified time, making it easy to access priority scripts.
Follow these steps to run the installation on Terminal.
sudo curl -o /usr/local/bin/thispy https://raw.githubusercontent.com/jmswycode/thispy/main/thispy.sh && sudo chmod +x /usr/local/bin/thispy
Run it in the directory where the Python file is located:
thispy
📦 Make sure you have installed (Optional).
sudo apt install curl dialog
sudo dnf install curl dialog
sudo pacman -S curl dialog
sudo zypper install curl dialog
Follow these steps to run the installation on Terminal.
pkg upgrade -y && pkg install curl dialog -y
curl -o $PREFIX/bin/thispy https://raw.githubusercontent.com/jmswycode/thispy/main/thispy.sh && chmod +x $PREFIX/bin/thispy
Run it in the directory where the Python file is located:
thispy
bash
curl
dialog