diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2024-09-19 12:00:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-19 12:00:16 +0900 |
| commit | 4fe21c27c6433888561df7596f882c1dff97533f (patch) | |
| tree | c8f35393363f7f2de7ae6b5572c5f8bfe3fa4ec1 /config/hypr | |
| parent | 453ba552c03d982aa3649892160ff44244ca27e2 (diff) | |
| parent | 90794ab39de7b8acdcd8191231c3852f72498f9b (diff) | |
Merge pull request #451 from JaKooLit/main
main to development
Diffstat (limited to 'config/hypr')
| -rw-r--r-- | config/hypr/UserConfigs/WindowRules.conf | 1 | ||||
| -rwxr-xr-x | config/hypr/UserScripts/ZshChangeTheme.sh | 36 | ||||
| -rwxr-xr-x | config/hypr/scripts/Polkit.sh | 1 | ||||
| -rw-r--r-- | config/hypr/v2.3.7 (renamed from config/hypr/v2.3.6-D) | 0 |
4 files changed, 27 insertions, 11 deletions
diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 26b7a7c2..6c8fcb7f 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -30,6 +30,7 @@ windowrulev2 = workspace 1, class:^([Tt]hunderbird)$ windowrulev2 = workspace 2, class:^([Ff]irefox|org.mozilla.firefox|[Ff]irefox-esr)$ windowrulev2 = workspace 2, class:^([Mm]icrosoft-edge(-stable|-beta|-dev|-unstable)?)$ windowrulev2 = workspace 2, class:^([Gg]oogle-chrome(-beta|-dev|-unstable)?)$ +windowrulev2 = workspace 2, class:^([Tt]horium-browser)$ #windowrulev2 = workspace 3, class:^([Tt]hunar)$ windowrulev2 = workspace 4, class:^(com.obsproject.Studio)$ windowrulev2 = workspace 5, class:^([Ss]team)$ diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index 46d2249e..f06f2b60 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -1,10 +1,19 @@ #!/bin/bash +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# Script for Oh my ZSH theme ( CTRL SHIFT O) + +# preview of theme can be view here: https://github.com/ohmyzsh/ohmyzsh/wiki/Themes + +# after choosing theme, TTY need to be closed and re-open themes_dir="$HOME/.oh-my-zsh/themes" file_extension=".zsh-theme" themes_array=($(find "$themes_dir" -type f -name "*$file_extension" -exec basename {} \; | sed -e "s/$file_extension//")) +# Add "Random" option to the beginning of the array +themes_array=("Random" "${themes_array[@]}") + rofi_command="rofi -i -dmenu -config ~/.config/rofi/config-zsh-theme.rasi" menu() { @@ -16,23 +25,28 @@ menu() { main() { choice=$(menu | ${rofi_command}) - # if nothing selected, script wont change anything + # if nothing selected, script won't change anything if [ -z "$choice" ]; then exit 0 fi zsh_path="$HOME/.zshrc" var_name="ZSH_THEME" - for i in "${themes_array[@]}"; do - if [[ "$i" == "$choice"* ]]; then - if [ -f "$zsh_path" ]; then - sed -i "s/^$var_name=.*/$var_name=\"$i\"/" "$zsh_path" - else - echo "File not found" - fi - break - fi - done + + if [[ "$choice" == "Random" ]]; then + # Pick a random theme from the original themes_array (excluding "Random") + random_theme=${themes_array[$((RANDOM % (${#themes_array[@]} - 1) + 1))]} + theme_to_set="$random_theme" + else + # Set theme to the selected choice + theme_to_set="$choice" + fi + + if [ -f "$zsh_path" ]; then + sed -i "s/^$var_name=.*/$var_name=\"$theme_to_set\"/" "$zsh_path" + else + echo "File not found" + fi } main diff --git a/config/hypr/scripts/Polkit.sh b/config/hypr/scripts/Polkit.sh index 80310ba0..a52aed8e 100755 --- a/config/hypr/scripts/Polkit.sh +++ b/config/hypr/scripts/Polkit.sh @@ -8,6 +8,7 @@ polkit=( "/usr/lib/polkit-kde-authentication-agent-1" "/usr/lib/polkit-gnome-authentication-agent-1" "/usr/libexec/polkit-gnome-authentication-agent-1" + "/usr/libexec/polkit-mate-authentication-agent-1" "/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1" "/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1" ) diff --git a/config/hypr/v2.3.6-D b/config/hypr/v2.3.7 index 31b3414d..31b3414d 100644 --- a/config/hypr/v2.3.6-D +++ b/config/hypr/v2.3.7 |
