diff options
| -rw-r--r-- | README.md | 27 | ||||
| -rw-r--r-- | config/fastfetch/config.jsonc | 3 | ||||
| -rw-r--r-- | config/hypr/configs/WindowRules-config-v3.conf | 2 | ||||
| -rw-r--r-- | config/hypr/configs/WindowRules.conf | 2 | ||||
| -rwxr-xr-x | config/hypr/scripts/Tak0-Per-Window-Switch.sh | 15 |
5 files changed, 16 insertions, 33 deletions
@@ -107,14 +107,13 @@ sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/mai - [`MORE INFO HERE`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Note] - > The auto copy script `copy.sh` will create backups of intended directories to be copied. - > However, it's still a good idea to manually backup just incase script fails to backup your configuration. + > The auto copy script `copy.sh` will create backups of intended directories to be copied. + > However, it's still a good idea to manually backup just incase script fails to backup your configuration. > If you already have a hyprland configuration, uninstall it first, or create a new user, and install it with that user - -- Clone this repo by using `git`. -- Change directory, i.e. `cd Arch-Hyprland` -- Make `install.sh` executable `chmod +x ./install.sh` -- Run the script `./install.sh` +- Clone this repo by using `git`. +- Change directory, i.e. `cd Arch-Hyprland` +- Make `install.sh` executable `chmod +x ./install.sh` +- Run the script `./install.sh` > To download from Master branch > Note: Ubuntu is exception, it has version specific branches @@ -211,7 +210,7 @@ chmod +x upgrade.sh #### βοΈ Contributing - Want to contribute? Click [`HERE`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) for a guide how to contribute -> Thanks to all who have contributed code, or support on the Discord server. You efforts are greatly appreciated + > Thanks to all who have contributed code, or support on the Discord server. You efforts are greatly appreciated #### π€·ββοΈ TO DO! @@ -227,19 +226,7 @@ chmod +x upgrade.sh - Subscribe to my Youtube Channel [YouTube](https://www.youtube.com/@Ja.KooLit) -- you can also give support through coffee's or btc π - - -or - - - - - ## π«° Thank you for the stars π©· - - - ### Document translations - Spanish: [CΓ³digo de Conducta](./i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md) Β· [GuΓa de mensajes de commit](./i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.es.md) Β· [GuΓa de contribuciΓ³n](./i18n/CONTRIBUTING/CONTRIBUTING.es.md) diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc index 5533976b..d183de3c 100644 --- a/config/fastfetch/config.jsonc +++ b/config/fastfetch/config.jsonc @@ -126,7 +126,6 @@ "type": "custom", "format": "\u001b[90mββββββββββββββββββββββββββββββββββββββββββββββββββββββ" }, - "break", - + "break" ] } diff --git a/config/hypr/configs/WindowRules-config-v3.conf b/config/hypr/configs/WindowRules-config-v3.conf index a409ee43..8212e9bf 100644 --- a/config/hypr/configs/WindowRules-config-v3.conf +++ b/config/hypr/configs/WindowRules-config-v3.conf @@ -1,4 +1,4 @@ -# /* ---- π« https://github.com/JaKooLit π« ---- */ # +# /* ---- π« https://github.com/LinuxBeginnings π« ---- */ # # Vendor defaults for window rules and layerrules # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more diff --git a/config/hypr/configs/WindowRules.conf b/config/hypr/configs/WindowRules.conf index a409ee43..8212e9bf 100644 --- a/config/hypr/configs/WindowRules.conf +++ b/config/hypr/configs/WindowRules.conf @@ -1,4 +1,4 @@ -# /* ---- π« https://github.com/JaKooLit π« ---- */ # +# /* ---- π« https://github.com/LinuxBeginnings π« ---- */ # # Vendor defaults for window rules and layerrules # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more diff --git a/config/hypr/scripts/Tak0-Per-Window-Switch.sh b/config/hypr/scripts/Tak0-Per-Window-Switch.sh index e1f4213d..3ba2c7af 100755 --- a/config/hypr/scripts/Tak0-Per-Window-Switch.sh +++ b/config/hypr/scripts/Tak0-Per-Window-Switch.sh @@ -10,7 +10,7 @@ # smooth and comfortable workflow. # # # ################################################################## -# This is for changing kb_layouts. Set kb_layouts in +# This is for changing kb_layouts. Set kb_layouts in MAP_FILE="$HOME/.cache/kb_layout_per_window" USER_CFG="$HOME/.config/hypr/UserConfigs/UserSettings.conf" @@ -45,8 +45,8 @@ get_keyboards() { # Save window-specific layout save_map() { local W=$1 L=$2 - grep -v "^${W}:" "$MAP_FILE" >"$MAP_FILE.tmp" - echo "${W}:${L}" >>"$MAP_FILE.tmp" + grep -v "^${W}:" "$MAP_FILE" > "$MAP_FILE.tmp" + echo "${W}:${L}" >> "$MAP_FILE.tmp" mv "$MAP_FILE.tmp" "$MAP_FILE" } @@ -78,7 +78,7 @@ cmd_toggle() { break fi done - NEXT=$(((i + 1) % count)) + NEXT=$(( (i+1) % count )) do_switch "$NEXT" save_map "$W" "${kb_layouts[NEXT]}" notify-send -u low -i "$ICON" "kb_layout: ${kb_layouts[NEXT]}" @@ -117,9 +117,6 @@ fi # CLI case "$1" in -toggle | "") cmd_toggle ;; -*) - echo "Usage: $SCRIPT_NAME [toggle]" >&2 - exit 1 - ;; + toggle|"") cmd_toggle ;; + *) echo "Usage: $SCRIPT_NAME [toggle]" >&2; exit 1 ;; esac |
