Last active
April 3, 2026 12:52
-
-
Save huj13k4n9/d6ba875176d11867ad387c74a89a1da1 to your computer and use it in GitHub Desktop.
context.terminal for different terminals in pwntools.
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
| # Zellij | |
| context.terminal = ["zellij", "action", "new-pane", "-d", "right", "-c", "--", "bash", "-c"] | |
| # Alacritty | |
| context.terminal = ["alacritty", "-e", "bash", "-c"] | |
| # GNOME Terminal | |
| context.terminal = ["gnome-terminal", "--", "bash", "-c"] | |
| # GNOME Console | |
| context.terminal = ["kgx", "-e", "bash", "-c"] | |
| # Xfce4 Terminal | |
| context.terminal = ["xfce4-terminal", "-e"] | |
| # Tilix | |
| context.terminal = ["/usr/bin/tilix", "-a", "session-add-right", "-e", "bash", "-c"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For konsole in a KDE env (e.g. Black Arch)
Thank you for this useful list