boxpackage/fedora.py

19 lines
405 B
Python
Raw Permalink Normal View History

2021-09-06 06:09:45 -07:00
import os
def installinstok(text):
os.system("lxterminal -e 'dnf install "+ text +"'")
def searchtok(text):
os.system("lxterminal -e 'dnf search " + str(text) + " && read'")
def removetok(text):
os.system("lxterminal -e 'dnf remove " + str(text) + "'")
2021-09-06 07:00:33 -07:00
def showtok(text):
os.system("lxterminal -e 'dnf info " + str(text) + " && read'")
2021-09-06 06:09:45 -07:00
def update():
os.system("lxterminal -e 'dnf update'")