-
Notifications
You must be signed in to change notification settings - Fork 728
Port Omarchy theme management to Omakub #526
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
Open
Adriein
wants to merge
11
commits into
basecamp:master
Choose a base branch
from
Adriein:import-themes-from-omakub-bin
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5cce220
feat: add idempotent theme installer script for Omakub
Adriein e27726d
feat: add 'Import' option to main selection menu script
Adriein c63cd51
feat: Add theme management script
Adriein cf56299
feat: Delete old theme installation management script
Adriein 79cacf2
feat: Remove import feature
Adriein ef002ef
feat: Added the migration to make it retrocompatible
Adriein 5d4ad38
feat: Use symlink on set gnome theme
Adriein c6d4eef
feat: Omakub bin theme setter upgraded to use symlinks
Adriein e652da2
feat: Let user choose theme when the migration is executed
Adriein bd954ac
feat: Small fixes where folder was already created
Adriein dc7d8a3
feat: update background file name
Adriein 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,41 @@ | ||
#!/bin/bash | ||
|
||
if [[ -n "$1" ]]; then | ||
INITIAL_THEME=$1 | ||
else | ||
INITIAL_THEME="tokyo-night" | ||
fi | ||
|
||
# Setup theme links | ||
if [ -d ~/.config/omakub/themes ]; then | ||
rm -rf ~/.config/omakub/themes | ||
fi | ||
|
||
# Create themes folder into user config | ||
mkdir -p ~/.config/omakub/themes | ||
|
||
# Iterate all omakub themes creating/overriding symlinks for each theme into the user config themes folder | ||
for f in ~/.local/share/omakub/themes/*; do ln -nfs "$f" ~/.config/omakub/themes/; done | ||
|
||
# Set initial theme | ||
mkdir -p ~/.config/omakub/current | ||
ln -snf ~/.config/omakub/themes/$INITIAL_THEME ~/.config/omakub/current/theme | ||
|
||
# Set specific app links for current theme | ||
ln -snf ~/.config/omakub/current/theme/alacritty.toml ~/.config/alacritty/theme.toml | ||
|
||
ln -snf ~/.config/omakub/current/theme/zellij.kdl ~/.config/zellij/themes/$INITIAL_THEME.kdl | ||
sed -i "s/theme \".*\"/theme \"$INITIAL_THEME\"/g" ~/.config/zellij/config.kdl | ||
|
||
ln -snf ~/.config/omakub/current/theme/neovim.lua ~/.config/nvim/lua/plugins/theme.lua | ||
|
||
if [ -f "~/.config/omakub/current/theme/btop.theme" ]; then | ||
ln -snf ~/.config/omakub/current/theme/btop.theme ~/.config/btop/themes/$INITIAL_THEME.theme | ||
sed -i "s/color_theme = \".*\"/color_theme = \"$INITIAL_THEME\"/g" ~/.config/btop/btop.conf | ||
else | ||
sed -i "s/color_theme = \".*\"/color_theme = \"Default\"/g" ~/.config/btop/btop.conf | ||
fi | ||
|
||
source ~/.config/omakub/current/theme/gnome.sh | ||
source ~/.config/omakub/current/theme/tophat.sh | ||
source ~/.config/omakub/current/theme/vscode.sh |
This file contains hidden or 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,11 @@ | ||
#!/bin/bash | ||
|
||
THEME_NAMES=("Tokyo Night" "Catppuccin" "Nord" "Everforest" "Gruvbox" "Kanagawa" "Ristretto" "Rose Pine" "Matte Black") | ||
THEME=$(gum choose "${THEME_NAMES[@]}" "Default" --header "Choose your theme" --height 12 | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g') | ||
|
||
# The the new theme management feature directories are created | ||
if [ -n "$THEME" ] && [ "$THEME" != "default" ]; then | ||
source $OMAKUB_PATH/install/desktop/theme.sh "$THEME" | ||
else | ||
source $OMAKUB_PATH/install/desktop/theme.sh | ||
fi |
This file contains hidden or 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
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.
not sure about that, is there a smarter/simple way to achieve the same?