-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from yuqisun/master
Implement components with CustomTkinter UI-library based on Tkinter
- Loading branch information
Showing
4 changed files
with
2,819 additions
and
475 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
input_theme=$1 | ||
echo "Theme: $input_theme" | ||
|
||
cd build | ||
if [ "$input_theme" == "classic" ]; then | ||
echo "classic theme selected" | ||
#start dark theme | ||
python ../launchUI_classic.py | ||
elif [ "$input_theme" == "light" ]; then | ||
echo "light theme selected" | ||
#start light theme | ||
python ../launchUI.py --theme light | ||
else | ||
echo "No theme selected, will start default theme (dark mode)" | ||
#start default theme (dark mode) | ||
python ../launchUI.py | ||
fi | ||
|
Oops, something went wrong.