-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUntitled Document
More file actions
36 lines (23 loc) · 864 Bytes
/
Untitled Document
File metadata and controls
36 lines (23 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 1 in terminal
nano /home/tran/Downloads/MythTechAppDir/usr/bin/MythTechControl.sh
# 2 in nano Paste:
#!/bin/bash
echo "[MythTech] Starting Control Center..."
/usr/bin/python3 /home/tran/Downloads/MythTechAppDir/usr/bin/MythTechControlCenter.py
echo "[MythTech] GUI closed. Shell still active."
exec bash
Save with Ctrl+O, then exit with Ctrl+X.
# 3 make it executable
chmod +x /home/tran/Downloads/MythTechAppDir/usr/bin/MythTechControl.sh
# 4. Desktop Launcher Path and Permission - create the file:
nano ~/.local/share/applications/mythtech-control.desktop
# 5 in nano paste
[Desktop Entry]
Name=MythTech Control Center
Comment=Launch the MythTech Codex GUI
Exec=/home/tran/Downloads/MythTechAppDir/usr/bin/MythTechControl.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=Development;
Save with Ctrl+O, then exit with Ctrl+X.