12 lines
340 B
Python
12 lines
340 B
Python
# Open the config file in gedit
|
|
|
|
# Import required modules
|
|
import os
|
|
import time
|
|
import subprocess
|
|
|
|
# Let the user know what we're doing
|
|
print("Opening config.ini in the default editor")
|
|
|
|
# Open gedit as a subprocess and fork it
|
|
subprocess.call(["/etc/alternatives/editor", os.path.dirname(os.path.realpath(__file__)) + "/../config.ini"])
|