dotfiles/Code/User/History/-2022988a/Cd7D

20 lines
551 B
Plaintext
Raw Normal View History

2024-01-13 13:50:04 -06:00
#!/usr/bin/python3
from PyQt5 import QtWidgets
from QTermWidget import QTermWidget
class Terminal(QTermWidget):
def __init__(self, process: str, args: list):
super().__init__(0)
self.finished.connect(self.close)
self.setTerminalSizeHint(False)
self.setColorScheme("DarkPastels")
self.setShellProgram(process)
self.setArgs(args)
self.startShellProgram()
self.show()
app = QtWidgets.QApplication([])
app.exec()
args = ["pacman", "-Syu"]
term = Terminal("sudo", args)