-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a config file and a force option to overwrite profiles #9
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d54248b
Add a config file and a force option to overwrite profiles
Gaareth 30b834d
remove unnecessary import
Gaareth 17bed24
Add download of default config instead of using harcoded values
Gaareth b24872a
Apply config and force option, also fix bug
Gaareth 0fbf0fc
Update version from 1.0.3 to 1.0.4
Gaareth bec4f98
Add --force option to readme
Gaareth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ README.md | |
env | ||
Konsave.egg-info | ||
build | ||
dist | ||
dist | ||
__pycache__/ |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,28 @@ | ||
--- | ||
entries: | ||
- gtk-2.0 | ||
- gtk-3.0 | ||
- gtk-4.0 | ||
- Kvantum | ||
- latte | ||
- dolphinrc | ||
- konsolerc | ||
- kcminputrc | ||
- kdeglobals | ||
- kglobalshortcutsrc | ||
- klipperrc | ||
- krunnerrc | ||
- kscreenlockerrc | ||
- ksmserverrc | ||
- kwinrc | ||
- kwinrulesrc | ||
- plasma-org.kde.plasma.desktop-appletsrc | ||
- plasmarc | ||
- plasmashellrc | ||
- gtkrc | ||
- gtkrc-2.0 | ||
- lattedockrc | ||
- breezerc | ||
- oxygenrc | ||
- lightlyrc | ||
- ksplashrc |
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 |
---|---|---|
|
@@ -7,13 +7,12 @@ | |
CONFIG_DIR = os.path.join(HOME, '.config') | ||
KONSAVE_DIR = os.path.join(CONFIG_DIR, 'konsave') | ||
PROFILES_DIR = os.path.join(KONSAVE_DIR, 'profiles') | ||
CONFIG_FILE = os.path.join(KONSAVE_DIR, "conf.yaml") | ||
|
||
folder_names = ['gtk-2.0', 'gtk-3.0', 'gtk-4.0', 'Kvantum', 'latte'] | ||
file_names = ['dolphinrc', 'konsolerc', 'kcminputrc', 'kdeglobals', 'kglobalshortcutsrc', 'klipperrc', 'krunnerrc', 'kscreenlockerrc', 'ksmserverrc', 'kwinrc', 'kwinrulesrc', 'plasma-org.kde.plasma.desktop-appletsrc', 'plasmarc', 'plasmashellrc', 'gtkrc', 'gtkrc-2.0', 'lattedockrc', 'breezerc', 'oxygenrc', 'lightlyrc', 'ksplashrc'] | ||
export_extension = '.knsv' | ||
|
||
if not os.path.exists(PROFILES_DIR): | ||
os.mkdirs(PROFILES_DIR) | ||
os.mkdir(PROFILES_DIR) | ||
Comment on lines
-16
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the bug I referenced in the commit message |
||
|
||
list_of_profiles = os.listdir(PROFILES_DIR) | ||
length_of_lop = len(list_of_profiles) |
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 |
---|---|---|
|
@@ -14,6 +14,8 @@ def read_desc(): | |
long_description_content_type="text/markdown", | ||
url="https://www.github.com/prayag2/konsave/", | ||
packages=find_packages(), | ||
package_data={'config': ['conf.yaml']}, | ||
install_requires=['PyYaml'], | ||
Comment on lines
+17
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added the PyYaml requirement and added the config file to package_data |
||
classifiers = [ | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: POSIX", | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the config file is not found the default config from the pip install folder will be copied to '~/.config/konsave'