From 7d7bc4f1c82743f0fa791596920e9b774239bcce Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:13:44 -0500 Subject: Added restore kitty wallpaper and should reload on color change On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Kitty_themes.sh modified: config/kitty/kitty.conf --- config/hypr/scripts/Kitty_themes.sh | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index 55da7e44..9c315270 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -20,10 +20,15 @@ apply_kitty_theme_to_config() { echo "Error: No theme name provided to apply_kitty_theme_to_config." >&2 return 1 fi + local theme_file_path_to_apply + if [ "$theme_name_to_apply" = "Set by wallpaper" ]; then + theme_file_path_to_apply="$kitty_themes_DiR/00-Default.conf" + else + theme_file_path_to_apply="$kitty_themes_DiR/$theme_name_to_apply.conf" + fi - local theme_file_path_to_apply="$kitty_themes_DiR/$theme_name_to_apply.conf" if [ ! -f "$theme_file_path_to_apply" ]; then - notify_user "$iDIR/error.png" "Error" "Theme file not found: $theme_name_to_apply.conf" + notify_user "$iDIR/error.png" "Error" "Theme file not found: $(basename "$theme_file_path_to_apply")" return 1 fi @@ -31,17 +36,24 @@ apply_kitty_theme_to_config() { temp_kitty_config_file=$(mktemp) cp "$kitty_config" "$temp_kitty_config_file" + local include_target + include_target="include ./kitty-themes/$(basename "$theme_file_path_to_apply")" + if grep -q -E '^[#[:space:]]*include\s+\./kitty-themes/.*\.conf' "$temp_kitty_config_file"; then - sed -i -E "s|^([#[:space:]]*include\s+\./kitty-themes/).*\.conf|include ./kitty-themes/$theme_name_to_apply.conf|g" "$temp_kitty_config_file" + sed -i -E "s|^([#[:space:]]*include\s+\./kitty-themes/).*\.conf|$include_target|g" "$temp_kitty_config_file" else if [ -s "$temp_kitty_config_file" ] && [ "$(tail -c1 "$temp_kitty_config_file")" != "" ]; then echo >>"$temp_kitty_config_file" fi - echo "include ./kitty-themes/$theme_name_to_apply.conf" >>"$temp_kitty_config_file" + echo "$include_target" >>"$temp_kitty_config_file" fi cp "$temp_kitty_config_file" "$kitty_config" rm "$temp_kitty_config_file" + if command -v kitty >/dev/null 2>&1; then + kitty @ load-config >/dev/null 2>&1 + kitty @ set-colors --all --configured "$theme_file_path_to_apply" >/dev/null 2>&1 + fi for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then @@ -66,6 +78,7 @@ fi original_kitty_config_content_backup=$(cat "$kitty_config") mapfile -t available_theme_names < <(find "$kitty_themes_DiR" -maxdepth 1 -name "*.conf" -type f -printf "%f\n" | sed 's/\.conf$//' | sort) +available_theme_names=("Set by wallpaper" "${available_theme_names[@]}") if [ ${#available_theme_names[@]} -eq 0 ]; then notify_user "$iDIR/error.png" "No Kitty Themes" "No .conf files found in $kitty_themes_DiR." @@ -73,7 +86,10 @@ if [ ${#available_theme_names[@]} -eq 0 ]; then fi current_selection_index=0 -current_active_theme_name=$(awk -F'include ./kitty-themes/|\\.conf' '/^[[:space:]]*include \.\/kitty-themes\/.*\.conf/{print $2; exit}' "$kitty_config") +current_active_theme_name=$(awk -F'include ./kitty-themes/|\\.conf' '/^[[:space:]]*include \\.\/kitty-themes\/.*\\.conf/{print $2; exit}' "$kitty_config") +if [ "$current_active_theme_name" = "00-Default" ]; then + current_active_theme_name="Set by wallpaper" +fi if [ -n "$current_active_theme_name" ]; then for i in "${!available_theme_names[@]}"; do -- cgit v1.2.3 From aa4cabd031a14e1471ac69a47ae381c9c9ea462e Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:28:00 -0500 Subject: Fixed wallpaper based color themes so text is readable On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Kitty_themes.sh modified: config/kitty/kitty.conf --- config/hypr/scripts/Kitty_themes.sh | 2 +- config/kitty/kitty.conf | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index 9c315270..d5ebd718 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -123,7 +123,7 @@ while true; do -mesg "Preview: ${theme_to_preview_now} | Enter: Preview | Ctrl+S: Apply & Exit | Esc: Cancel" \ -config "$rofi_theme_for_this_script" \ -selected-row "$current_selection_index" \ - -kb-custom-1 "Control+s") # MODIFIED HERE: Changed to Control+s for custom action 1 + -kb-custom-1 "Control+s") rofi_exit_code=$? diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 9670b112..f110cf53 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -30,6 +30,4 @@ window_padding_width 4 selection_foreground none selection_background none -foreground #dddddd -background #000000 -cursor #dddddd \ No newline at end of file +# foreground/background/cursor are set by the active theme -- cgit v1.2.3 From 30ae39634fd2d757c7b9fa62e6ce55639072f24a Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:33:56 -0500 Subject: Changing wallust color theme to softdark vs dark On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/WallustSwww.sh modified: config/wallust/wallust.toml --- config/hypr/scripts/WallustSwww.sh | 14 ++++++++++++++ config/wallust/wallust.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/WallustSwww.sh b/config/hypr/scripts/WallustSwww.sh index 63911036..391abb8a 100755 --- a/config/hypr/scripts/WallustSwww.sh +++ b/config/hypr/scripts/WallustSwww.sh @@ -114,6 +114,20 @@ wallust_targets=( ) wait_for_templates "$start_ts" "${wallust_targets[@]}" || true +# Reload kitty colors when wallpaper-based theme is active +kitty_wallust_theme="$HOME/.config/kitty/kitty-themes/01-Wallust.conf" +if [ -s "$kitty_wallust_theme" ]; then + if command -v kitty >/dev/null 2>&1; then + kitty @ load-config >/dev/null 2>&1 || true + kitty @ set-colors --all --configured "$kitty_wallust_theme" >/dev/null 2>&1 || true + fi + if pidof kitty >/dev/null 2>&1; then + for pid in $(pidof kitty); do + kill -SIGUSR1 "$pid" 2>/dev/null || true + done + fi +fi + # Normalize Ghostty palette syntax in case ':' was used by older files if [ -f "$HOME/.config/ghostty/wallust.conf" ]; then sed -i -E 's/^(\s*palette\s*=\s*)([0-9]{1,2}):/\1\2=/' "$HOME/.config/ghostty/wallust.conf" 2>/dev/null || true diff --git a/config/wallust/wallust.toml b/config/wallust/wallust.toml index 7565dd47..76d0267c 100644 --- a/config/wallust/wallust.toml +++ b/config/wallust/wallust.toml @@ -23,7 +23,7 @@ color_space = "labmixed" # * softdark16 - softdark with 16 color variation # * softlight - Light with soft pastel colors, counterpart of `harddark` # * softlight16 - softlight with 16 color variation -palette = "dark16" +palette = "softdark16" # Difference between similar colors, used by the colorspace: # 1 Not perceptible by human eyes. -- cgit v1.2.3 From 5189632065218916f2e3a6cb4f70688b9469d804 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:35:03 -0500 Subject: Removed pre-applying theme caused huge delay in startup On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Kitty_themes.sh --- config/hypr/scripts/Kitty_themes.sh | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index d5ebd718..26d9e208 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -50,16 +50,17 @@ apply_kitty_theme_to_config() { cp "$temp_kitty_config_file" "$kitty_config" rm "$temp_kitty_config_file" - if command -v kitty >/dev/null 2>&1; then - kitty @ load-config >/dev/null 2>&1 - kitty @ set-colors --all --configured "$theme_file_path_to_apply" >/dev/null 2>&1 - fi - - for pid_kitty in $(pidof kitty); do - if [ -n "$pid_kitty" ]; then - kill -SIGUSR1 "$pid_kitty" + if pidof kitty >/dev/null 2>&1; then + if command -v kitty >/dev/null 2>&1; then + kitty @ load-config >/dev/null 2>&1 + kitty @ set-colors --all --configured "$theme_file_path_to_apply" >/dev/null 2>&1 fi - done + for pid_kitty in $(pidof kitty); do + if [ -n "$pid_kitty" ]; then + kill -SIGUSR1 "$pid_kitty" + fi + done + fi return 0 } @@ -101,14 +102,6 @@ if [ -n "$current_active_theme_name" ]; then fi while true; do - theme_to_preview_now="${available_theme_names[$current_selection_index]}" - - if ! apply_kitty_theme_to_config "$theme_to_preview_now"; then - echo "$original_kitty_config_content_backup" >"$kitty_config" - for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done - notify_user "$iDIR/error.png" "Preview Error" "Failed to apply $theme_to_preview_now. Reverted." - exit 1 - fi rofi_input_list="" for theme_name_in_list in "${available_theme_names[@]}"; do @@ -120,7 +113,7 @@ while true; do rofi -dmenu -i \ -format 'i' \ -p "Kitty Theme" \ - -mesg "Preview: ${theme_to_preview_now} | Enter: Preview | Ctrl+S: Apply & Exit | Esc: Cancel" \ + -mesg "Enter: Preview | Ctrl+S: Apply & Exit | Esc: Cancel" \ -config "$rofi_theme_for_this_script" \ -selected-row "$current_selection_index" \ -kb-custom-1 "Control+s") @@ -130,6 +123,13 @@ while true; do if [ $rofi_exit_code -eq 0 ]; then if [[ "$chosen_index_from_rofi" =~ ^[0-9]+$ ]] && [ "$chosen_index_from_rofi" -lt "${#available_theme_names[@]}" ]; then current_selection_index="$chosen_index_from_rofi" + theme_to_preview_now="${available_theme_names[$current_selection_index]}" + if ! apply_kitty_theme_to_config "$theme_to_preview_now"; then + echo "$original_kitty_config_content_backup" >"$kitty_config" + for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done + notify_user "$iDIR/error.png" "Preview Error" "Failed to apply $theme_to_preview_now. Reverted." + exit 1 + fi else : fi -- cgit v1.2.3 From 946a232960ecdfa9c2234cfd03cfb791c7fc6878 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:42:39 -0500 Subject: Fixed when hitting enter the kitty theme menu Enter previews theme and loops menu again. Until ESC or CTRL-S to set On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Kitty_themes.sh --- config/hypr/scripts/Kitty_themes.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index 26d9e208..b0331e08 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -130,6 +130,7 @@ while true; do notify_user "$iDIR/error.png" "Preview Error" "Failed to apply $theme_to_preview_now. Reverted." exit 1 fi + continue else : fi -- cgit v1.2.3 From be74b118bab91e793dd3c24e677cc1e99baa1d84 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:51:04 -0500 Subject: Fixing delay in preview loop On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Kitty_themes.sh --- config/hypr/scripts/Kitty_themes.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index b0331e08..300cfcb4 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -16,6 +16,7 @@ notify_user() { # Function to apply the selected kitty theme apply_kitty_theme_to_config() { local theme_name_to_apply="$1" + local apply_mode="${2:-preview}" if [ -z "$theme_name_to_apply" ]; then echo "Error: No theme name provided to apply_kitty_theme_to_config." >&2 return 1 @@ -51,7 +52,7 @@ apply_kitty_theme_to_config() { cp "$temp_kitty_config_file" "$kitty_config" rm "$temp_kitty_config_file" if pidof kitty >/dev/null 2>&1; then - if command -v kitty >/dev/null 2>&1; then + if [ "$apply_mode" = "apply" ] && command -v kitty >/dev/null 2>&1; then kitty @ load-config >/dev/null 2>&1 kitty @ set-colors --all --configured "$theme_file_path_to_apply" >/dev/null 2>&1 fi @@ -124,7 +125,7 @@ while true; do if [[ "$chosen_index_from_rofi" =~ ^[0-9]+$ ]] && [ "$chosen_index_from_rofi" -lt "${#available_theme_names[@]}" ]; then current_selection_index="$chosen_index_from_rofi" theme_to_preview_now="${available_theme_names[$current_selection_index]}" - if ! apply_kitty_theme_to_config "$theme_to_preview_now"; then + if ! apply_kitty_theme_to_config "$theme_to_preview_now" "preview"; then echo "$original_kitty_config_content_backup" >"$kitty_config" for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done notify_user "$iDIR/error.png" "Preview Error" "Failed to apply $theme_to_preview_now. Reverted." @@ -140,6 +141,7 @@ while true; do for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done break elif [ $rofi_exit_code -eq 10 ]; then # This is the exit code for -kb-custom-1 + apply_kitty_theme_to_config "$theme_to_preview_now" "apply" notify_user "$iDIR/ja.png" "Kitty Theme Applied" "$theme_to_preview_now" break else -- cgit v1.2.3 From 14d08958140befb7c5322cad1d42ed0a16190215 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 16:53:07 -0500 Subject: Removed redundant kitty theme options --- config/hypr/scripts/Kitty_themes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index 300cfcb4..fde5edbd 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -79,7 +79,7 @@ fi original_kitty_config_content_backup=$(cat "$kitty_config") -mapfile -t available_theme_names < <(find "$kitty_themes_DiR" -maxdepth 1 -name "*.conf" -type f -printf "%f\n" | sed 's/\.conf$//' | sort) +mapfile -t available_theme_names < <(find "$kitty_themes_DiR" -maxdepth 1 -name "*.conf" -type f -printf "%f\n" | sed 's/\.conf$//' | grep -v -E '^(00-Default|01-Wallust)$' | sort) available_theme_names=("Set by wallpaper" "${available_theme_names[@]}") if [ ${#available_theme_names[@]} -eq 0 ]; then -- cgit v1.2.3 From 585db1cbfbd6dda9e6fa4f419bbf206382ead784 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 19:41:23 -0500 Subject: Broke out kitty config for softdark16 and dark16 elsewhere On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/WallustSwww.sh new file: config/wallust/wallust-kitty.toml modified: config/wallust/wallust.toml --- config/hypr/scripts/WallustSwww.sh | 17 +++++++++++++++++ config/wallust/wallust-kitty.toml | 11 +++++++++++ config/wallust/wallust.toml | 6 ++---- 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 config/wallust/wallust-kitty.toml (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/WallustSwww.sh b/config/hypr/scripts/WallustSwww.sh index 391abb8a..3cbfcc5a 100755 --- a/config/hypr/scripts/WallustSwww.sh +++ b/config/hypr/scripts/WallustSwww.sh @@ -114,6 +114,23 @@ wallust_targets=( ) wait_for_templates "$start_ts" "${wallust_targets[@]}" || true +# Run kitty-only wallust config to keep terminal palette separate +run_wallust_with_config() { + local cfg="$1" + if wallust run --help 2>&1 | grep -q -E '(^|[[:space:]])-c([,[:space:]]|$)|--config'; then + wallust run -s -c "$cfg" "$wallpaper_path" || true + else + WALLUST_CONFIG="$cfg" wallust run -s "$wallpaper_path" || true + fi +} + +kitty_cfg="$HOME/.config/wallust/wallust-kitty.toml" +if [ -f "$kitty_cfg" ]; then + kitty_ts=$(date +%s) + run_wallust_with_config "$kitty_cfg" + wait_for_templates "$kitty_ts" "$HOME/.config/kitty/kitty-themes/01-Wallust.conf" || true +fi + # Reload kitty colors when wallpaper-based theme is active kitty_wallust_theme="$HOME/.config/kitty/kitty-themes/01-Wallust.conf" if [ -s "$kitty_wallust_theme" ]; then diff --git a/config/wallust/wallust-kitty.toml b/config/wallust/wallust-kitty.toml new file mode 100644 index 00000000..69fe67f0 --- /dev/null +++ b/config/wallust/wallust-kitty.toml @@ -0,0 +1,11 @@ +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# wallust configuration - kitty only + +backend = "fastresize" +color_space = "labmixed" +palette = "softdark16" +threshold = 11 + +[templates] +kitty.template = 'colors-kitty.conf' +kitty.target = '~/.config/kitty/kitty-themes/01-Wallust.conf' diff --git a/config/wallust/wallust.toml b/config/wallust/wallust.toml index 76d0267c..65077208 100644 --- a/config/wallust/wallust.toml +++ b/config/wallust/wallust.toml @@ -3,7 +3,7 @@ # How the image is parse, in order to get the colors: # full - resized - wal - thumb - fastresize - kmeans -backend = "kmeans" +backend = "fastresize" # What color space to use to produce and select the most prominent colors: # lab - labmixed - lch - lchmixed @@ -23,7 +23,7 @@ color_space = "labmixed" # * softdark16 - softdark with 16 color variation # * softlight - Light with soft pastel colors, counterpart of `harddark` # * softlight16 - softlight with 16 color variation -palette = "softdark16" +palette = "dark16" # Difference between similar colors, used by the colorspace: # 1 Not perceptible by human eyes. @@ -46,8 +46,6 @@ rofi.target = '~/.config/rofi/wallust/colors-rofi.rasi' waybar.template = 'colors-waybar.css' waybar.target = '~/.config/waybar/wallust/colors-waybar.css' -kitty.template = 'colors-kitty.conf' -kitty.target = '~/.config/kitty/kitty-themes/01-Wallust.conf' ghostty.template = 'colors-ghostty.conf' ghostty.target = '~/.config/ghostty/wallust.conf' -- cgit v1.2.3 From d482870c619dd5c6c4d8cd4ae1ea8b0dc7fb084e Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 31 Jan 2026 11:37:13 -0500 Subject: Added basic install script for uv I will expand on it later, needed for testing On branch development Your branch is up to date with 'origin/development'. Changes to be committed: new file: config/hypr/scripts/install-uv.sh --- config/hypr/scripts/install-uv.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 config/hypr/scripts/install-uv.sh (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/install-uv.sh b/config/hypr/scripts/install-uv.sh new file mode 100755 index 00000000..3582a78e --- /dev/null +++ b/config/hypr/scripts/install-uv.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +curl -LsSf https://astral.sh/uv/install.sh | sh -- cgit v1.2.3 From 218e2b85622e397686fd8a6bd085c006bb6a92f2 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sun, 1 Feb 2026 00:46:19 -0500 Subject: Added dots-tui-ubuntu-2404 to begin wiring into copy.sh On branch development Your branch is up to date with 'origin/development'. Changes to be committed: new file: config/hypr/scripts/dots-tui new file: config/hypr/scripts/dots-tui-ubuntu-2404 --- config/hypr/scripts/dots-tui | 1 + config/hypr/scripts/dots-tui-ubuntu-2404 | Bin 0 -> 17734136 bytes 2 files changed, 1 insertion(+) create mode 120000 config/hypr/scripts/dots-tui create mode 100755 config/hypr/scripts/dots-tui-ubuntu-2404 (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/dots-tui b/config/hypr/scripts/dots-tui new file mode 120000 index 00000000..007282b4 --- /dev/null +++ b/config/hypr/scripts/dots-tui @@ -0,0 +1 @@ +dots-tui-ubuntu-2404 \ No newline at end of file diff --git a/config/hypr/scripts/dots-tui-ubuntu-2404 b/config/hypr/scripts/dots-tui-ubuntu-2404 new file mode 100755 index 00000000..f266dba3 Binary files /dev/null and b/config/hypr/scripts/dots-tui-ubuntu-2404 differ -- cgit v1.2.3 From 0c663c83dc4436a94c8d47445c51636868d0a895 Mon Sep 17 00:00:00 2001 From: Loris383 <194787933+Loris383v@users.noreply.github.com> Date: Sun, 1 Feb 2026 17:46:17 +0100 Subject: Docs: i18n edits (#940) * Add SummitSplit v3 configuration for top and bottom bars (#935) Added the configuration for SummitSplit to include 0-JA-0 Top and updated the bottom bar settings. * Refactor Tak0-Per-Window-Switch script, fixing issue (#936) Fixed the issue that made the script to forget the choice of language on windows. In case of switching from language 1 to language 3, switching a window, then getting back to the previous window - you had to switch from half-saved state to language 1 and then all the way to language 3. * Add french readme * Change i18n architecture * docs: commit message guidelines french translation * docs: add contributing.md french translation * docs: add code of conduct french translation Translation taken from https://www.contributor-covenant.org/fr/version/2/1/code_of_conduct/code_of_conduct.md * docs: linked french translations in readme.md Added under the spanish ones, same format --------- Co-authored-by: Martin Guzman <55927935+brockar@users.noreply.github.com> Co-authored-by: tak0dan Co-authored-by: Donald Williams <129223418+dwilliam62@users.noreply.github.com> --- CODE_OF_CONDUCT.es.md | 81 ------- COMMIT_MESSAGE_GUIDELINES.es.md | 148 ------------ CONTRIBUTING.es.md | 69 ------ README.md | 15 +- config/hypr/scripts/Tak0-Per-Window-Switch.sh | 45 ++-- config/waybar/configs/[TOP & BOT] SummitSplit v3 | 79 +++++++ i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md | 81 +++++++ i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md | 85 +++++++ .../COMMIT_MESSAGE_GUIDELINES.es.md | 148 ++++++++++++ .../COMMIT_MESSAGE_GUIDELINES.fr.md | 149 ++++++++++++ i18n/CONTRIBUTING/CONTRIBUTING.es.md | 69 ++++++ i18n/CONTRIBUTING/CONTRIBUTING.fr.md | 68 ++++++ i18n/README.de.md | 232 ------------------- i18n/README.jp.md | 230 ------------------- i18n/README.ro.md | 200 ---------------- i18n/README.ru.md | 199 ---------------- i18n/README.ua.md | 199 ---------------- i18n/README/README.de.md | 233 +++++++++++++++++++ i18n/README/README.fr.md | 255 +++++++++++++++++++++ i18n/README/README.jp.md | 231 +++++++++++++++++++ i18n/README/README.ro.md | 201 ++++++++++++++++ i18n/README/README.ru.md | 200 ++++++++++++++++ i18n/README/README.ua.md | 200 ++++++++++++++++ 23 files changed, 2024 insertions(+), 1393 deletions(-) delete mode 100644 CODE_OF_CONDUCT.es.md delete mode 100644 COMMIT_MESSAGE_GUIDELINES.es.md delete mode 100644 CONTRIBUTING.es.md create mode 100644 config/waybar/configs/[TOP & BOT] SummitSplit v3 create mode 100644 i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md create mode 100644 i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md create mode 100644 i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.es.md create mode 100644 i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md create mode 100644 i18n/CONTRIBUTING/CONTRIBUTING.es.md create mode 100644 i18n/CONTRIBUTING/CONTRIBUTING.fr.md delete mode 100644 i18n/README.de.md delete mode 100644 i18n/README.jp.md delete mode 100644 i18n/README.ro.md delete mode 100644 i18n/README.ru.md delete mode 100644 i18n/README.ua.md create mode 100644 i18n/README/README.de.md create mode 100644 i18n/README/README.fr.md create mode 100644 i18n/README/README.jp.md create mode 100644 i18n/README/README.ro.md create mode 100644 i18n/README/README.ru.md create mode 100644 i18n/README/README.ua.md (limited to 'config/hypr/scripts') diff --git a/CODE_OF_CONDUCT.es.md b/CODE_OF_CONDUCT.es.md deleted file mode 100644 index 14d7b067..00000000 --- a/CODE_OF_CONDUCT.es.md +++ /dev/null @@ -1,81 +0,0 @@ -# Código de Conducta del Pacto del Colaborador - -[Ver versión en inglés](./CODE_OF_CONDUCT.md) - -## Nuestro compromiso - -Nosotros, como miembros, contribuyentes y líderes, nos comprometemos a hacer que la participación en nuestra comunidad sea una experiencia libre de acoso para todas las personas, sin distinción de edad, complexión, discapacidad visible o invisible, etnia, características sexuales, identidad y expresión de género, nivel de experiencia, educación, situación socioeconómica, nacionalidad, apariencia personal, raza, religión, orientación o identidad sexual. - -Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y saludable. - -## Nuestros estándares - -Ejemplos de comportamiento que contribuye a un entorno positivo para nuestra comunidad incluyen: - -- Demostrar empatía y amabilidad hacia otras personas. -- Ser respetuoso con opiniones, puntos de vista y experiencias que difieran de las nuestras. -- Dar y aceptar con gracia retroalimentación constructiva. -- Asumir la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, y aprender de la experiencia. -- Centrarse en lo que es mejor no solo para nosotros como individuos, sino para la comunidad en su conjunto. - -Ejemplos de comportamiento inaceptable incluyen: - -- El uso de lenguaje o imágenes sexualizadas, y cualquier tipo de atención o insinuación sexual. -- Troleo, comentarios insultantes o despectivos, y ataques personales o políticos. -- Acoso público o privado. -- Publicación de información privada de otras personas, como direcciones físicas o de correo electrónico, sin su permiso explícito. -- Otra conducta que, razonablemente, pudiera considerarse inapropiada en un entorno profesional. - -## Responsabilidades de cumplimiento - -Los líderes de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán medidas correctivas apropiadas y justas en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino. - -Los líderes de la comunidad tienen el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, confirmaciones de cambios (commits), código, ediciones del wiki, incidencias y otras contribuciones que no estén alineadas con este Código de Conducta, y comunicarán los motivos de las decisiones de moderación cuando corresponda. - -## Alcance - -Este Código de Conducta se aplica a todos los espacios de la comunidad y también cuando una persona representa oficialmente a la comunidad en espacios públicos. Ejemplos de representar a nuestra comunidad incluyen usar una dirección de correo electrónico oficial, publicar a través de una cuenta oficial en redes sociales o actuar como representante designado en un evento en línea o presencial. - -## Cumplimiento - -Los casos de comportamiento abusivo, acosador o de otra forma inaceptable pueden ser reportados a los líderes de la comunidad responsables del cumplimiento en [abrir un issue o discusión]. Todas las quejas serán revisadas e investigadas de manera rápida y justa. - -Todos los líderes de la comunidad están obligados a respetar la privacidad y seguridad de quien reporte cualquier incidente. - -## Guías de aplicación - -Los líderes de la comunidad seguirán estas Guías de Impacto Comunitario para determinar las consecuencias por cualquier acción que consideren en violación de este Código de Conducta: - -### 1. Corrección - -Impacto comunitario: Uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no bienvenido en la comunidad. - -Consecuencia: Una advertencia privada y por escrito de parte de los líderes de la comunidad, brindando claridad sobre la naturaleza de la violación y una explicación de por qué el comportamiento fue inapropiado. Se puede solicitar una disculpa pública. - -### 2. Advertencia - -Impacto comunitario: Una violación por un incidente único o una serie de acciones. - -Consequence: Una advertencia con consecuencias para comportamientos continuados. Ninguna interacción con las personas involucradas, incluida la interacción no solicitada con quienes hacen cumplir el Código de Conducta, por un período de tiempo especificado. Esto incluye evitar interacciones en espacios de la comunidad así como en canales externos como redes sociales. Violaciones a estos términos pueden llevar a una suspensión temporal o permanente. - -### 3. Suspensión temporal - -Impacto comunitario: Una violación grave de los estándares de la comunidad, incluido el comportamiento inapropiado sostenido. - -Consecuencia: Una suspensión temporal de cualquier tipo de interacción o comunicación pública con la comunidad por un período de tiempo especificado. No se permite interacción pública o privada con las personas involucradas, incluida la interacción no solicitada con quienes hacen cumplir el Código de Conducta, durante este período. Violar estos términos puede llevar a una suspensión permanente. - -### 4. Suspensión permanente - -Impacto comunitario: Demostrar un patrón de violación de los estándares de la comunidad, incluido el comportamiento inapropiado sostenido, acoso a una persona o agresión o desprecio hacia clases de individuos. - -Consecuencia: Suspensión permanente de cualquier tipo de interacción pública dentro de la comunidad. - -## Atribución - -Este Código de Conducta está adaptado del [Contributor Covenant][homepage], versión 2.0, disponible en https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. - -Las Guías de Impacto Comunitario se inspiraron en la [escala de aplicación del código de conducta de Mozilla](https://github.com/mozilla/diversity). - -[homepage]: https://www.contributor-covenant.org - -Para respuestas a preguntas comunes sobre este código de conducta, vea las preguntas frecuentes en https://www.contributor-covenant.org/faq. Traducciones disponibles en https://www.contributor-covenant.org/translations. diff --git a/COMMIT_MESSAGE_GUIDELINES.es.md b/COMMIT_MESSAGE_GUIDELINES.es.md deleted file mode 100644 index 87888736..00000000 --- a/COMMIT_MESSAGE_GUIDELINES.es.md +++ /dev/null @@ -1,148 +0,0 @@ -# Guía para Mensajes de Commit - -[Ver versión en inglés](./COMMIT_MESSAGE_GUIDELINES.md) - -Un buen mensaje de commit debe ser descriptivo y aportar contexto sobre los cambios realizados. Esto facilita entender y revisar los cambios en el futuro. - -## Recomendaciones - -- Empieza con un resumen breve de los cambios del commit. -- Usa el modo imperativo en el resumen, como si dieras una instrucción. Por ejemplo, "Add feature" en lugar de "Added feature". -- Proporciona detalles adicionales en el cuerpo del mensaje, si es necesario: motivo del cambio, impacto, dependencias añadidas o eliminadas, etc. -- Mantén cada línea en 72 caracteres o menos para que sea fácil de leer en la salida de `git log`. - -### Ejemplos de buenos mensajes - -- "Add authentication feature for user login" -- "Fix bug causing application to crash on startup" -- "Update documentation for API endpoints" - -Recordatorio: escribir mensajes de commit descriptivos ahorra tiempo en el futuro y ayuda a otras personas a entender los cambios hechos al código. - -## Tipos de commit - -A continuación, una lista (ampliable) de tipos de commit que puedes usar: - -`feat`: Añade una característica nueva al proyecto - -```markdown -feat: Add multi-image upload support -``` - -`fix`: Corrige un error o problema en el proyecto - -```markdown -fix: Fix bug causing application to crash on startup -``` - -`docs`: Cambios en documentación - -```markdown -docs: Update documentation for API endpoints -``` - -`style`: Cambios cosméticos o de formato (colores, formateo de código, etc.) - -```markdown -style: Update colors and formatting -``` - -`refactor`: Cambios internos que no alteran el comportamiento, pero mejoran calidad/mantenibilidad - -```markdown -refactor: Remove unused code -``` - -`test`: Añadir o modificar tests - -```markdown -test: Add tests for new feature -``` - -`chore`: Cambios que no encajan en otras categorías (actualizar dependencias, configurar build, etc.) - -```markdown -chore: Update dependencies -``` - -`perf`: Mejoras de rendimiento - -```markdown -perf: Improve performance of image processing -``` - -`security`: Aborda temas de seguridad - -```markdown -security: Update dependencies to address security issues -``` - -`merge`: Fusiones de ramas - -```markdown -merge: Merge branch 'feature/branch-name' into develop -``` - -`revert`: Revertir un commit previo - -```markdown -revert: Revert "Add feature" -``` - -`build`: Cambios en el sistema de build o dependencias - -```markdown -build: Update dependencies -``` - -`ci`: Cambios en la integración continua (CI) - -```markdown -ci: Update CI configuration -``` - -`config`: Cambios en archivos de configuración - -```markdown -config: Update configuration files -``` - -`deploy`: Cambios en el proceso de despliegue - -```markdown -deploy: Update deployment scripts -``` - -`init`: Inicialización de repositorio o proyecto - -```markdown -init: Initialize project -``` - -`move`: Mover archivos o directorios - -```markdown -move: Move files to new directory -``` - -`rename`: Renombrar archivos o directorios - -```markdown -rename: Rename files -``` - -`remove`: Eliminar archivos o directorios - -```markdown -remove: Remove files -``` - -`update`: Actualización de código, dependencias u otros componentes - -```markdown -update: Update code -``` - -Estos son solo ejemplos; puedes definir tipos personalizados si los usas de forma consistente y con mensajes claros y descriptivos. - -**Importante:** Si planeas usar un tipo de commit personalizado que no esté en la lista, añádelo aquí para que otras personas lo entiendan también. Crea un pull request para incluirlo en este archivo. diff --git a/CONTRIBUTING.es.md b/CONTRIBUTING.es.md deleted file mode 100644 index e0d5e28e..00000000 --- a/CONTRIBUTING.es.md +++ /dev/null @@ -1,69 +0,0 @@ -# Guía para Contribuir a KooL Hyprland Projects - -[Ver versión en inglés](./CONTRIBUTING.md) - -¡Gracias por tu interés en contribuir a KooL Hyprland Projects! Aceptamos todo tipo de contribuciones: correcciones de errores, nuevas características, mejoras en documentación y otras mejoras generales. - -## Primeros pasos - -1. Haz un fork del repositorio de la rama `development` en tu cuenta de GitHub. Así tendrás una copia sobre la cual trabajar sin afectar el repositorio original. - - Para hacer fork, pulsa el botón **Fork** en la esquina superior derecha de esta página o haz clic [aquí](https://github.com/JaKooLit/Hyprland-Dots/fork). - - Asegúrate de desmarcar la opción de copiar solo la rama `main`. Así se copiarán la rama `development` y otras ramas (si existen). - -2. Clona tu repositorio bifurcado en tu equipo. - - - Usa el siguiente comando para clonar tu fork: - - ```bash - git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git - ``` - -3. Crea una rama nueva para tus cambios. - - - Por ejemplo, para crear una rama llamada `tu-rama`, ejecuta: - - ```bash - git checkout -b tu-rama - ``` - -4. Realiza tus cambios y haz commit con un mensaje descriptivo. - - - Por ejemplo, para hacer commit de tus cambios, ejecuta (siguiendo la [guía de mensajes de commit](./COMMIT_MESSAGE_GUIDELINES.md)): - - ```bash - git commit -m "feat: add a new feature" - ``` - -5. Empuja tu rama a tu fork. - - ```bash - git push origin tu-rama - ``` - -6. Abre un **pull request** contra el repositorio en la rama `development`. - - Pasos sugeridos: - 1. Ve a tu fork en GitHub. - 2. Haz clic en **Compare & pull request** junto a tu rama. - 3. Añade un título y una descripción. - 4. Pulsa **Create pull request** y recuerda añadir las etiquetas correspondientes usando la [plantilla de PR](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). - -## Directrices - -- Sigue el estilo de código del proyecto. -- Actualiza la **documentación** si es necesario. -- Añade tests cuando corresponda. -- Asegúrate de que todos los tests pasen o que los cambios estén probados antes de enviar. -- Mantén tu PR enfocado y evita incluir cambios no relacionados. -- Revisa estos archivos antes de enviar tus cambios: - - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) – Reporte de errores. - - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) – Sugerir características. - - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) – Cambios de documentación. - - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) – Plantilla de PR. - - [COMMIT_MESSAGE_GUIDELINES.md](./COMMIT_MESSAGE_GUIDELINES.md) – Guía de mensajes de commit. - - [CONTRIBUTING.md](./CONTRIBUTING.md) – Guía en inglés. - - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) – Licencia. - - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) – Proyecto. - -## Contacto - -Si tienes preguntas, utiliza [GitHub Discussions](https://github.com/JaKooLit/Hyprland-Dots/discussions) o el [Servidor de Discord](https://discord.gg/kool-tech-world). diff --git a/README.md b/README.md index f8fe3954..268b7ad4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.jp.md) -[![ro](https://img.shields.io/badge/lang-ro-green.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ro.md) -[![ru](https://img.shields.io/badge/lang-ru-red.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ru.md) -[![ua](https://img.shields.io/badge/lang-ua-white.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ua.md) -[![de](https://img.shields.io/badge/lang-de-magenta.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.de.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./i18n/README/README.jp.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./i18n/README/README.ro.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./i18n/README/README.ru.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./i18n/README/README.ua.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./i18n/README/README.de.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./i18n/README/README.fr.md)

@@ -248,4 +249,6 @@ Or you can donate cryto on my btc wallet :) ### Document translations -- Spanish: [Código de Conducta](./CODE_OF_CONDUCT.es.md) · [Guía de mensajes de commit](./COMMIT_MESSAGE_GUIDELINES.es.md) · [Guía de contribución](./CONTRIBUTING.es.md) +- 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) + +- French: [Code de Conduite](./i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md) · [Directives pour les messages de commit](./i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md) · [Guide de contribution](./i18n/CONTRIBUTING/CONTRIBUTING.fr.md) \ No newline at end of file diff --git a/config/hypr/scripts/Tak0-Per-Window-Switch.sh b/config/hypr/scripts/Tak0-Per-Window-Switch.sh index d652f0f7..6cd0c564 100755 --- a/config/hypr/scripts/Tak0-Per-Window-Switch.sh +++ b/config/hypr/scripts/Tak0-Per-Window-Switch.sh @@ -1,17 +1,21 @@ ################################################################## +# # +# # # TAK_0'S Per-Window-Switch # # # +# # +# # # Just a little script that I made to switch keyboard layouts # # per-window instead of global switching for the more # -# smooth and comfortable workflow. # +# 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" CFG_FILE="$HOME/.config/hypr/configs/SystemSettings.conf" ICON="$HOME/.config/swaync/images/ja.png" SCRIPT_NAME="$(basename "$0")" -LISTENER_PIDFILE="$HOME/.cache/kb_layout_per_window.listener.pid" # Ensure map file exists touch "$MAP_FILE" @@ -37,8 +41,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" } @@ -70,7 +74,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]}" @@ -92,10 +96,7 @@ cmd_restore() { # Listen to focus events and restore window-specific layouts subscribe() { local SOCKET2="$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" - [[ -S "$SOCKET2" ]] || { - echo "Error: Hyprland socket not found." >&2 - return 1 - } + [[ -S "$SOCKET2" ]] || { echo "Error: Hyprland socket not found." >&2; exit 1; } socat -u UNIX-CONNECT:"$SOCKET2" - | while read -r line; do [[ "$line" =~ ^activewindow ]] && cmd_restore @@ -103,26 +104,12 @@ subscribe() { } # Ensure only one listener -start_listener_once() { - if [[ -f "$LISTENER_PIDFILE" ]]; then - local existing_pid - existing_pid=$(cat "$LISTENER_PIDFILE" 2>/dev/null || true) - if [[ -n "$existing_pid" ]] && kill -0 "$existing_pid" 2>/dev/null; then - return - fi - fi - - subscribe & - echo $! >"$LISTENER_PIDFILE" -} - -start_listener_once +if ! pgrep -f "$SCRIPT_NAME.*--listener" >/dev/null; then + subscribe --listener & +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 diff --git a/config/waybar/configs/[TOP & BOT] SummitSplit v3 b/config/waybar/configs/[TOP & BOT] SummitSplit v3 new file mode 100644 index 00000000..fc2ebecb --- /dev/null +++ b/config/waybar/configs/[TOP & BOT] SummitSplit v3 @@ -0,0 +1,79 @@ +//Updated Sumsplit to include 0-JA-0 Top and updated BOT + [ + { + "include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + "$HOME/.config/waybar/UserModules", + ], + "name": "topbar", + "layer": "top", + "position": "top", + //"mode": "dock", + "exclusive": true, + "spacing": 2, + "passthrough": false, + "gtk-layer-shell": true, + "reload_style_on_change": true, + "modules-left": [ + "idle_inhibitor", + "custom/separator#blank", + "tray", + "connections", + "clock", + "network#speed", + + "custom/separator#blank_2", + ], + "modules-center": ["group/app_drawer", + "custom/separator#dot-line", + "hyprland/workspaces#rw", + "custom/separator#dot-line", + "group/notify",], + + + "modules-right": [ + + "group/laptop", + "custom/separator#blank", + "group/mobo_drawer", + "custom/separator#line", + "group/audio", + "custom/separator#dot-line", + "mpris", + "custom/separator#blank", + "custom/nightlight", + "group/status", + ], + + }, + { + "include": [ + "$HOME/.config/waybar/Modules", + "$HOME/.config/waybar/ModulesWorkspaces", + "$HOME/.config/waybar/ModulesCustom", + "$HOME/.config/waybar/ModulesGroups", + "$HOME/.config/waybar/UserModules", + ], + "name": "bottombar", + "layer": "top", + "position": "bottom", + "height": 30, + "mode": "dock", + "exclusive": true, + "spacing": 2, + "passthrough": true, + "gtk-layer-shell": true, + "reload_style_on_change": true, + "modules-left": [ "hyprland/window", + "custom/cava_mviz", "custom/playerctl"], + "modules-center": ["wlr/taskbar"], + "modules-right": ["custom/backlight", + "backlight/slider", + "custom/speaker", + "pulseaudio/slider", "custom/updater", + ], + } + ] diff --git a/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md b/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md new file mode 100644 index 00000000..14d7b067 --- /dev/null +++ b/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.es.md @@ -0,0 +1,81 @@ +# Código de Conducta del Pacto del Colaborador + +[Ver versión en inglés](./CODE_OF_CONDUCT.md) + +## Nuestro compromiso + +Nosotros, como miembros, contribuyentes y líderes, nos comprometemos a hacer que la participación en nuestra comunidad sea una experiencia libre de acoso para todas las personas, sin distinción de edad, complexión, discapacidad visible o invisible, etnia, características sexuales, identidad y expresión de género, nivel de experiencia, educación, situación socioeconómica, nacionalidad, apariencia personal, raza, religión, orientación o identidad sexual. + +Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y saludable. + +## Nuestros estándares + +Ejemplos de comportamiento que contribuye a un entorno positivo para nuestra comunidad incluyen: + +- Demostrar empatía y amabilidad hacia otras personas. +- Ser respetuoso con opiniones, puntos de vista y experiencias que difieran de las nuestras. +- Dar y aceptar con gracia retroalimentación constructiva. +- Asumir la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, y aprender de la experiencia. +- Centrarse en lo que es mejor no solo para nosotros como individuos, sino para la comunidad en su conjunto. + +Ejemplos de comportamiento inaceptable incluyen: + +- El uso de lenguaje o imágenes sexualizadas, y cualquier tipo de atención o insinuación sexual. +- Troleo, comentarios insultantes o despectivos, y ataques personales o políticos. +- Acoso público o privado. +- Publicación de información privada de otras personas, como direcciones físicas o de correo electrónico, sin su permiso explícito. +- Otra conducta que, razonablemente, pudiera considerarse inapropiada en un entorno profesional. + +## Responsabilidades de cumplimiento + +Los líderes de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán medidas correctivas apropiadas y justas en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino. + +Los líderes de la comunidad tienen el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, confirmaciones de cambios (commits), código, ediciones del wiki, incidencias y otras contribuciones que no estén alineadas con este Código de Conducta, y comunicarán los motivos de las decisiones de moderación cuando corresponda. + +## Alcance + +Este Código de Conducta se aplica a todos los espacios de la comunidad y también cuando una persona representa oficialmente a la comunidad en espacios públicos. Ejemplos de representar a nuestra comunidad incluyen usar una dirección de correo electrónico oficial, publicar a través de una cuenta oficial en redes sociales o actuar como representante designado en un evento en línea o presencial. + +## Cumplimiento + +Los casos de comportamiento abusivo, acosador o de otra forma inaceptable pueden ser reportados a los líderes de la comunidad responsables del cumplimiento en [abrir un issue o discusión]. Todas las quejas serán revisadas e investigadas de manera rápida y justa. + +Todos los líderes de la comunidad están obligados a respetar la privacidad y seguridad de quien reporte cualquier incidente. + +## Guías de aplicación + +Los líderes de la comunidad seguirán estas Guías de Impacto Comunitario para determinar las consecuencias por cualquier acción que consideren en violación de este Código de Conducta: + +### 1. Corrección + +Impacto comunitario: Uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no bienvenido en la comunidad. + +Consecuencia: Una advertencia privada y por escrito de parte de los líderes de la comunidad, brindando claridad sobre la naturaleza de la violación y una explicación de por qué el comportamiento fue inapropiado. Se puede solicitar una disculpa pública. + +### 2. Advertencia + +Impacto comunitario: Una violación por un incidente único o una serie de acciones. + +Consequence: Una advertencia con consecuencias para comportamientos continuados. Ninguna interacción con las personas involucradas, incluida la interacción no solicitada con quienes hacen cumplir el Código de Conducta, por un período de tiempo especificado. Esto incluye evitar interacciones en espacios de la comunidad así como en canales externos como redes sociales. Violaciones a estos términos pueden llevar a una suspensión temporal o permanente. + +### 3. Suspensión temporal + +Impacto comunitario: Una violación grave de los estándares de la comunidad, incluido el comportamiento inapropiado sostenido. + +Consecuencia: Una suspensión temporal de cualquier tipo de interacción o comunicación pública con la comunidad por un período de tiempo especificado. No se permite interacción pública o privada con las personas involucradas, incluida la interacción no solicitada con quienes hacen cumplir el Código de Conducta, durante este período. Violar estos términos puede llevar a una suspensión permanente. + +### 4. Suspensión permanente + +Impacto comunitario: Demostrar un patrón de violación de los estándares de la comunidad, incluido el comportamiento inapropiado sostenido, acoso a una persona o agresión o desprecio hacia clases de individuos. + +Consecuencia: Suspensión permanente de cualquier tipo de interacción pública dentro de la comunidad. + +## Atribución + +Este Código de Conducta está adaptado del [Contributor Covenant][homepage], versión 2.0, disponible en https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Las Guías de Impacto Comunitario se inspiraron en la [escala de aplicación del código de conducta de Mozilla](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +Para respuestas a preguntas comunes sobre este código de conducta, vea las preguntas frecuentes en https://www.contributor-covenant.org/faq. Traducciones disponibles en https://www.contributor-covenant.org/translations. diff --git a/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md b/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md new file mode 100644 index 00000000..91c6f1e6 --- /dev/null +++ b/i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md @@ -0,0 +1,85 @@ +# Code de conduite _Contributor Covenant_ + +## Notre engagement + +En tant que membres, contributeur·trice·s et dirigeant·e·s, nous nous engageons à faire de la participation à notre communauté une expérience sans harcèlement, quel que soit l'âge, la taille, le handicap visible ou non, l'ethnicité, les caractéristiques sexuelles, l'identité et l'expression de genre, le niveau d'expérience, l'éducation, le statut socio-économique, la nationalité, l'apparence, la race, la caste, la couleur de peau, la religion, ou l'identité et l'orientation sexuelle. + +Nous nous engageons à agir et interagir de manière à contribuer à une communauté ouverte, accueillante, diversifiée, inclusive et saine. + +## Nos critères + +Exemples de comportements qui contribuent à créer un environnement positif : + +* Faire preuve d'empathie et de bienveillance envers les autres +* Être respectueux des opinions, points de vue et expériences divergents +* Donner et recevoir avec grâce les critiques constructives +* Assumer ses responsabilités et s'excuser auprès des personnes affectées par nos erreurs et apprendre de ces expériences +* Se concentrer sur ce qui est le meilleur non pas uniquement pour nous en tant qu'individu, mais aussi pour l'ensemble de la communauté + +Exemples de comportements inacceptables : + +* L'utilisation de langage ou d'images sexualisés et d'attentions ou d'avances sexuelles de toute nature +* Le _trolling_, les commentaires insultants ou désobligeants et les attaques personnelles ou d'ordre politique +* Le harcèlement en public ou en privé +* La publication d'informations privées d'autrui, telle qu'une adresse postale ou une adresse électronique, sans leur autorisation explicite +* Toute autre conduite qui pourrait raisonnablement être considérée comme inappropriée dans un cadre professionnel + +## Responsabilités d'application + +Les dirigeant·e·s de la communauté sont chargé·e·s de clarifier et de faire respecter nos normes de comportements acceptables et prendront des mesures correctives appropriées et équitables en réponse à tout comportement qu'ils ou elles jugent inapproprié, menaçant, offensant ou nuisible. + +Les dirigeant·e·s de la communauté ont le droit et la responsabilité de supprimer, modifier ou rejeter les commentaires, les contributions, le code, les modifications de wikis, les rapports d'incidents ou de bogues et autres contributions qui ne sont pas alignés sur ce code de conduite, et communiqueront les raisons des décisions de modération le cas échéant. + +## Portée d'application + +Ce code de conduite s'applique à la fois au sein des espaces du projet ainsi que dans les espaces publics lorsqu'un individu représente officiellement le projet ou sa communauté. Font parties des exemples de représentation d'un projet ou d'une communauté l'utilisation d'une adresse électronique officielle, la publication sur les réseaux sociaux à l'aide d'un compte officiel ou le fait d'agir en tant que représentant·e désigné·e lors d'un événement en ligne ou hors-ligne. + +## Application + +Les cas de comportements abusifs, harcelants ou tout autre comportement inacceptables peuvent être signalés aux dirigeant·e·s de la communauté responsables de l'application du code de conduite à [INSÉRER UNE ADRESSE EMAIL]. +Toutes les plaintes seront examinées et feront l'objet d'une enquête rapide et équitable. + +Tou·te·s les dirigeant·e·s de la communauté sont tenu·e·s de respecter la vie privée et la sécurité des personnes ayant signalé un incident. + +## Directives d'application + +Les dirigeant·e·s de communauté suivront ces directives d'application sur l'impact communautaire afin de déterminer les conséquences de toute action qu'ils jugent contraire au présent code de conduite : + +### 1. Correction + +**Impact communautaire** : utilisation d'un langage inapproprié ou tout autre comportement jugé non professionnel ou indésirable dans la communauté. + +**Conséquence** : un avertissement écrit et privé de la part des dirigeant·e·s de la communauté, clarifiant la nature du non-respect et expliquant pourquoi le comportement était inapproprié. Des excuses publiques peuvent être demandées. + +### 2. Avertissement + +**Impact communautaire** : un non-respect par un seul incident ou une série d'actions. + +**Conséquence** : un avertissement avec des conséquences dû à la poursuite du comportement. Aucune interaction avec les personnes concernées, y compris l'interaction non sollicitée avec celles et ceux qui sont chargé·e·s de l'application de ce code de conduite, pendant une période déterminée. Cela comprend le fait d'éviter les interactions dans les espaces communautaires ainsi que sur les canaux externes comme les médias sociaux. Le non-respect de ces conditions peut entraîner un bannissement temporaire ou permanent. + +### 3. Bannissement temporaire + +**Impact communautaire** : un non-respect grave des normes communautaires, notamment un comportement inapproprié soutenu. + +**Conséquence** : un bannissement temporaire de toutes formes d'interactions ou de communications avec la communauté pendant une période déterminée. Aucune interaction publique ou privée avec les personnes concernées, y compris les interactions non sollicitées avec celles et ceux qui appliquent ce code de conduite, n'est autorisée pendant cette période. Le non-respect de ces conditions peut entraîner un bannissement permanent. + +### 4. Bannissement permanent + +**Impact communautaire** : démontrer un schéma récurrent de non-respect des normes de la communauté y compris un comportement inapproprié soutenu, le harcèlement d'un individu ainsi que l'agression ou le dénigrement de catégories d'individus. + +**Conséquence** : un bannissement permanent de toutes formes d'interactions publiques au sein de la communauté. + +## Attributions + +Ce code de conduite est adapté du [Contributor Covenant][homepage], version 2.1, +disponible à [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Les Directives d'application ont été inspirées par le [Code of conduct enforcement ladder][Mozilla CoC] de Mozilla. + +Pour obtenir des réponses aux questions courantes sur ce code de conduite, consultez la FAQ à [https://www.contributor-covenant.org/faq][FAQ]. Les traductions sont disponibles sur [https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.es.md b/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.es.md new file mode 100644 index 00000000..87888736 --- /dev/null +++ b/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.es.md @@ -0,0 +1,148 @@ +# Guía para Mensajes de Commit + +[Ver versión en inglés](./COMMIT_MESSAGE_GUIDELINES.md) + +Un buen mensaje de commit debe ser descriptivo y aportar contexto sobre los cambios realizados. Esto facilita entender y revisar los cambios en el futuro. + +## Recomendaciones + +- Empieza con un resumen breve de los cambios del commit. +- Usa el modo imperativo en el resumen, como si dieras una instrucción. Por ejemplo, "Add feature" en lugar de "Added feature". +- Proporciona detalles adicionales en el cuerpo del mensaje, si es necesario: motivo del cambio, impacto, dependencias añadidas o eliminadas, etc. +- Mantén cada línea en 72 caracteres o menos para que sea fácil de leer en la salida de `git log`. + +### Ejemplos de buenos mensajes + +- "Add authentication feature for user login" +- "Fix bug causing application to crash on startup" +- "Update documentation for API endpoints" + +Recordatorio: escribir mensajes de commit descriptivos ahorra tiempo en el futuro y ayuda a otras personas a entender los cambios hechos al código. + +## Tipos de commit + +A continuación, una lista (ampliable) de tipos de commit que puedes usar: + +`feat`: Añade una característica nueva al proyecto + +```markdown +feat: Add multi-image upload support +``` + +`fix`: Corrige un error o problema en el proyecto + +```markdown +fix: Fix bug causing application to crash on startup +``` + +`docs`: Cambios en documentación + +```markdown +docs: Update documentation for API endpoints +``` + +`style`: Cambios cosméticos o de formato (colores, formateo de código, etc.) + +```markdown +style: Update colors and formatting +``` + +`refactor`: Cambios internos que no alteran el comportamiento, pero mejoran calidad/mantenibilidad + +```markdown +refactor: Remove unused code +``` + +`test`: Añadir o modificar tests + +```markdown +test: Add tests for new feature +``` + +`chore`: Cambios que no encajan en otras categorías (actualizar dependencias, configurar build, etc.) + +```markdown +chore: Update dependencies +``` + +`perf`: Mejoras de rendimiento + +```markdown +perf: Improve performance of image processing +``` + +`security`: Aborda temas de seguridad + +```markdown +security: Update dependencies to address security issues +``` + +`merge`: Fusiones de ramas + +```markdown +merge: Merge branch 'feature/branch-name' into develop +``` + +`revert`: Revertir un commit previo + +```markdown +revert: Revert "Add feature" +``` + +`build`: Cambios en el sistema de build o dependencias + +```markdown +build: Update dependencies +``` + +`ci`: Cambios en la integración continua (CI) + +```markdown +ci: Update CI configuration +``` + +`config`: Cambios en archivos de configuración + +```markdown +config: Update configuration files +``` + +`deploy`: Cambios en el proceso de despliegue + +```markdown +deploy: Update deployment scripts +``` + +`init`: Inicialización de repositorio o proyecto + +```markdown +init: Initialize project +``` + +`move`: Mover archivos o directorios + +```markdown +move: Move files to new directory +``` + +`rename`: Renombrar archivos o directorios + +```markdown +rename: Rename files +``` + +`remove`: Eliminar archivos o directorios + +```markdown +remove: Remove files +``` + +`update`: Actualización de código, dependencias u otros componentes + +```markdown +update: Update code +``` + +Estos son solo ejemplos; puedes definir tipos personalizados si los usas de forma consistente y con mensajes claros y descriptivos. + +**Importante:** Si planeas usar un tipo de commit personalizado que no esté en la lista, añádelo aquí para que otras personas lo entiendan también. Crea un pull request para incluirlo en este archivo. diff --git a/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md b/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md new file mode 100644 index 00000000..974e0242 --- /dev/null +++ b/i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md @@ -0,0 +1,149 @@ +# Directives pour les messages de commit + +Un bon message de commit doit être descriptif et fournir le contexte des modifications effectuées. Cela facilite la compréhension et la révision des changements à l'avenir. + +Voici quelques directives pour rédiger des messages de commit descriptifs : + +- Commencez par un court résumé des modifications apportées dans le commit. + +- Utilisez l'impératif pour le résumé, comme si vous donniez un ordre. Par exemple, « Add feature » au lieu de « Added feature ». + +- Fournissez des détails supplémentaires dans le corps du message si nécessaire. Cela peut inclure la raison du changement, son impact, ou toute dépendance introduite ou supprimée. + +- Maintenez le message à moins de 72 caractères par ligne pour garantir une lecture facile dans la sortie de l'historique Git. + +Exemples de bons messages de commit : + +- "Add authentication feature for user login" +- "Fix bug causing application to crash on startup" +- "Update documentation for API endpoints" + +N'oubliez pas que rédiger des messages de commit descriptifs peut faire gagner du temps et éviter des frustrations à l'avenir, tout en aidant les autres à comprendre les modifications apportées au code. + +## Types de messages de commit + +Voici une liste plus complète de types de commit que vous pouvez utiliser : + +`feat` : Ajout d'une nouvelle fonctionnalité au projet + +```markdown +feat: Add multi-image upload support +``` + +`fix` : Correction d'un bug ou d'un problème dans le projet + +```markdown +fix: Fix bug causing application to crash on startup +``` + +`docs` : Mise à jour de la documentation du projet + +```markdown +docs: Update documentation for API endpoints +``` + +`style` : Changements cosmétiques ou de style (comme changer les couleurs ou formater le code) + +```markdown +style: Update colors and formatting +``` + +`refactor` : Changements de code n'affectant pas le comportement du projet, mais améliorant sa qualité ou sa maintenance + +```markdown +refactor: Remove unused code +``` + +`test` : Ajout ou modification de tests pour le projet + +```markdown +test: Add tests for new feature +``` + +`chore` : Changements ne rentrant dans aucune autre catégorie, comme la mise à jour des dépendances ou la configuration du système de build + +```markdown +chore: Update dependencies +``` + +`perf` : Amélioration des performances du projet + +```markdown +perf: Improve performance of image processing +``` + +`security` : Traitement des problèmes de sécurité dans le projet + +```markdown +security: Update dependencies to address security issues +``` + +`merge` : Fusion de branches dans le projet + +```markdown +merge: Merge branch 'feature/branch-name' into develop +``` + +`revert` : Annulation d'un commit précédent + +```markdown +revert: Revert "Add feature" +``` + +`build` : Changements affectant le système de build ou les dépendances du projet + +```markdown +build: Update dependencies +``` + +`ci` : Changements affectant le système d'intégration continue (CI) du projet + +```markdown +ci: Update CI configuration +``` + +`config` : Changements des fichiers de configuration du projet + +```markdown +config: Update configuration files +``` + +`deploy` : Changements du processus de déploiement du projet + +```markdown +deploy: Update deployment scripts +``` + +`init` : Création ou initialisation d'un nouveau dépôt ou projet + +```markdown +init: Initialize project +``` + +`move` : Déplacement de fichiers ou de répertoires au sein du projet + +```markdown +move: Move files to new directory +``` + +`rename` : Renommage de fichiers ou de répertoires au sein du projet + +```markdown +rename: Rename files +``` + +`remove` : Suppression de fichiers ou de répertoires du projet + +```markdown +remove: Remove files +``` + +`update` : Mise à jour du code, des dépendances ou d'autres composants du projet + +```markdown +update: Update code +``` + +Ce ne sont que des exemples, et vous pouvez également créer vos propres types de commit personnalisés. Cependant, il est important de les utiliser de manière cohérente et d'écrire des messages clairs pour permettre aux autres de comprendre facilement les changements effectués. + +**Important :** Si vous prévoyez d'utiliser un type de message de commit personnalisé autre que ceux listés ci-dessus, assurez-vous de l'ajouter à cette liste afin que les autres puissent également le comprendre. Créez une "pull request" pour l'ajouter à ce fichier. \ No newline at end of file diff --git a/i18n/CONTRIBUTING/CONTRIBUTING.es.md b/i18n/CONTRIBUTING/CONTRIBUTING.es.md new file mode 100644 index 00000000..e0d5e28e --- /dev/null +++ b/i18n/CONTRIBUTING/CONTRIBUTING.es.md @@ -0,0 +1,69 @@ +# Guía para Contribuir a KooL Hyprland Projects + +[Ver versión en inglés](./CONTRIBUTING.md) + +¡Gracias por tu interés en contribuir a KooL Hyprland Projects! Aceptamos todo tipo de contribuciones: correcciones de errores, nuevas características, mejoras en documentación y otras mejoras generales. + +## Primeros pasos + +1. Haz un fork del repositorio de la rama `development` en tu cuenta de GitHub. Así tendrás una copia sobre la cual trabajar sin afectar el repositorio original. + - Para hacer fork, pulsa el botón **Fork** en la esquina superior derecha de esta página o haz clic [aquí](https://github.com/JaKooLit/Hyprland-Dots/fork). + - Asegúrate de desmarcar la opción de copiar solo la rama `main`. Así se copiarán la rama `development` y otras ramas (si existen). + +2. Clona tu repositorio bifurcado en tu equipo. + + - Usa el siguiente comando para clonar tu fork: + + ```bash + git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git + ``` + +3. Crea una rama nueva para tus cambios. + + - Por ejemplo, para crear una rama llamada `tu-rama`, ejecuta: + + ```bash + git checkout -b tu-rama + ``` + +4. Realiza tus cambios y haz commit con un mensaje descriptivo. + + - Por ejemplo, para hacer commit de tus cambios, ejecuta (siguiendo la [guía de mensajes de commit](./COMMIT_MESSAGE_GUIDELINES.md)): + + ```bash + git commit -m "feat: add a new feature" + ``` + +5. Empuja tu rama a tu fork. + + ```bash + git push origin tu-rama + ``` + +6. Abre un **pull request** contra el repositorio en la rama `development`. + - Pasos sugeridos: + 1. Ve a tu fork en GitHub. + 2. Haz clic en **Compare & pull request** junto a tu rama. + 3. Añade un título y una descripción. + 4. Pulsa **Create pull request** y recuerda añadir las etiquetas correspondientes usando la [plantilla de PR](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). + +## Directrices + +- Sigue el estilo de código del proyecto. +- Actualiza la **documentación** si es necesario. +- Añade tests cuando corresponda. +- Asegúrate de que todos los tests pasen o que los cambios estén probados antes de enviar. +- Mantén tu PR enfocado y evita incluir cambios no relacionados. +- Revisa estos archivos antes de enviar tus cambios: + - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) – Reporte de errores. + - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) – Sugerir características. + - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) – Cambios de documentación. + - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) – Plantilla de PR. + - [COMMIT_MESSAGE_GUIDELINES.md](./COMMIT_MESSAGE_GUIDELINES.md) – Guía de mensajes de commit. + - [CONTRIBUTING.md](./CONTRIBUTING.md) – Guía en inglés. + - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) – Licencia. + - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) – Proyecto. + +## Contacto + +Si tienes preguntas, utiliza [GitHub Discussions](https://github.com/JaKooLit/Hyprland-Dots/discussions) o el [Servidor de Discord](https://discord.gg/kool-tech-world). diff --git a/i18n/CONTRIBUTING/CONTRIBUTING.fr.md b/i18n/CONTRIBUTING/CONTRIBUTING.fr.md new file mode 100644 index 00000000..4fd102f7 --- /dev/null +++ b/i18n/CONTRIBUTING/CONTRIBUTING.fr.md @@ -0,0 +1,68 @@ +# Contribuer aux Projets Hyprland de KooL + +Merci de votre intérêt pour la contribution aux Projets Hyprland de KooL ! Nous accueillons toutes les contributions, y compris les corrections de bugs, les améliorations de fonctionnalités, les mises à jour de la documentation et autres améliorations générales. + +## Commencer + +1. Forkez le dépôt de la branche de développement sur votre compte GitHub. Cela créera une copie de ce dépôt sur votre compte. Vous pouvez apporter des modifications à cette copie sans affecter le dépôt original. + - Pour forker ce dépôt, cliquez sur le bouton **Fork** dans le coin supérieur droit de cette page ou cliquez [ici](https://github.com/JaKooLit/Hyprland-Dots/fork). + - Assurez-vous de décocher « Copy the `main` branch only ». Cela copiera la branche de développement ainsi que les autres branches (s'il y en a). + +2. Clonez votre dépôt forké sur votre machine locale. + + - Utilisez la commande suivante pour cloner votre dépôt forké sur votre machine locale : + ```bash + git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git + ``` + +3. Créez une nouvelle branche pour vos modifications. + + - Par exemple, pour créer une nouvelle branche nommée `nom-de-votre-branche`, utilisez la commande suivante : + + ```bash + git checkout -b nom-de-votre-branche + ``` + +4. Appliquez vos modifications et committez-les avec un message de commit descriptif. + + - Par exemple, pour commit vos modifications, utilisez la commande suivante et assurez-vous de suivre les [directives pour les messages de commit](../COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md) : + + ```bash + git commit -m "feat: add a new feature" + ``` + +5. Poussez (push) vos modifications vers votre dépôt forké. + + - Par exemple, pour pousser vos modifications vers votre dépôt forké, utilisez la commande suivante : + + ```bash + git push origin nom-de-votre-branche + ``` + +6. Soumettez une **"pull request"** vers le dépôt de la branche de développement. + - Par exemple, pour créer une pull request, suivez ces étapes : + 1. Allez sur votre dépôt forké. + 2. Cliquez sur le bouton **Compare & pull request** à côté de votre branche `nom-de-votre-branche`. + 3. Ajoutez un titre et une description pour votre pull request. + 4. Cliquez sur **Create pull request** et n'oubliez pas d'ajouter les labels pertinents en utilisant le [modèle de pull request](../../.github/PULL_REQUEST_TEMPLATE.md). + +## Directives + +- Respectez le style de code du projet. +- Mettez à jour la **documentation** si nécessaire. +- Ajoutez des tests si cela est applicable. +- Assurez-vous que tous les tests passent ou que l'ensemble soit entièrement testé avant de soumettre vos modifications. +- Gardez votre pull request ciblée et évitez d'inclure des changements non liés. +- N'oubliez pas de consulter les fichiers suivants avant de soumettre vos modifications : + - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) - Utilisez ce modèle pour créer un rapport afin de nous aider à nous améliorer. + - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) - Utilisez ce modèle pour suggérer une fonctionnalité pour ce projet. + - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) - Utilisez ce modèle pour proposer une modification de la documentation. + - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) - Utilisez ce modèle pour soumettre une pull request. + - [COMMIT_MESSAGE_GUIDELINES.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md) - Lisez ce fichier pour en savoir plus sur les directives des messages de commit. + - [CONTRIBUTING.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) - Lisez ce fichier pour en savoir plus sur les directives de contribution. + - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) - Lisez ce fichier pour en savoir plus sur la licence. + - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) - Lisez ce fichier pour en savoir plus sur le projet. + +## Contact + +Si vous avez des questions, n'hésitez pas à me contacter via les [Discussions GitHub](https://github.com/JaKooLit/Hyprland-Dots/discussions) ou [via le serveur Discord](https://discord.gg/kool-tech-world). \ No newline at end of file diff --git a/i18n/README.de.md b/i18n/README.de.md deleted file mode 100644 index 82a082b1..00000000 --- a/i18n/README.de.md +++ /dev/null @@ -1,232 +0,0 @@ -[![en](https://img.shields.io/badge/lang-en-yellow.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) -[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.jp.md) -[![ro](https://img.shields.io/badge/lang-ro-green.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ro.md) -[![ru](https://img.shields.io/badge/lang-ru-red.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ru.md) -[![ua](https://img.shields.io/badge/lang-ua-white.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ua.md) - -

- -

- -

- -

- -
- -
- -![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) - -
-
- -

- Sparkles - KooL's Hyprland Dotfiles Showcase - Sparkles -

- -
- -https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - -
- -### 📹 Ein Video Guide - -- folgt nach der Textanleitung - -### 🎞️ AGS Übersicht DEMO - -- Hier ist eine kurze Demo der AGS [Youtube LINK](https://youtu.be/zY5SLNPBJTs) - - - ---- - -[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALLATION)](https://git.io/typing-svg) - -### 🚩 🏁 Distro Hyprland Installationsskripte herunterladen und ausführen - -> [!VORSICHT] -> Wenn du die FISH-SHELL benutzt, VERWENDE diese Funktion NICHT. Klone stattdessen das Distro-Hyprland-Repository und führe install.sh aus. - -- HINWEIS: Das Paket `curl` muss installiert sein, um die Skripte herunterzuladen - -```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) -``` - -- Mit dem obigen Befehl kannst du jetzt automatisch die Hyprland Installationsskripte herunterladen und ausführen. -- Das Skript wird weitere Installationsskripte klonen und die `install.sh` starten. 😎 - -### 👁️‍🗨️ Meine Hyprland-Installationsskripte 👁️‍🗨️ - -- Automatisierte Hyprland-Skripte für ein Distro deiner Wahl. Diese Skripte laden, wenn ben;tigt, meine vorkonfigurierten Dotfiles -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) - -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) - -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) - -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) - -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) - -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) - ---- - -### 🪧 Achtung 🪧 - -- Dieses Repository enthält keine Pakete und wird keine Pakete installieren. Es enthält nur vorkonfigurierte Hyprland-Configs/Dotfiles. -- In den Installationsskripten kann man die benötigten Pakete finden. Zumindest müssen aber die Hyprland-Pakete installiert sein 😏😏😏 logisch!! -- Dieses Repository wird von den oben beschriebenen Distro Hyprland-Installationsskripten heruntergeladen, wenn du dich entscheidest, die vorkonfigurierten Dotfiles verwenden zu wollen. - -### 👀 Screenshots 👀 - -- Beispiel Screenshots findest du hier [Screenshots](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) - -### 📦 Whats new? - -- Um Änderungen leicht nachzuvollziehen, werde ich die [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) regelmäßig aktualisieren. Es werden neue Screenshots hinzugefügt, wenn die Änderungen erwähnenswert sind! - -> [!NOTE] -> Bitte beachte, dass Kools Dots standardmäßig für einen 2K (1440p) Monitor ohne Skalierung angepasst und konfiguriert sind. - -### 💥 Kopieren / Installation / Update-Anleitung 💥 - -- [`Weiter Infos hier`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - > [!Note] - > Das Kopierskript "copy.sh" erstellt Backups der zu kopierenden Konfigurationsverzeichnisse. Sollte das Skript fehlschlagen, empfiehlt es sich, manuell ein Backup zu erstellen. -- Klone das Repository mit Git, wechsle in das Verzeichnis, mache die Datei ausführbar und führe das Skript aus: - -> Um den Master-Branch herunterzuladen - -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -cd Hyprland-Dots -``` - -> Um den Entwicklungs-Branch (Development & Testing) herunterzuladen: - -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development -cd Hyprland-Dots -``` - -- Automatisiertes Kopieren und Installieren der vorkonfigurierten Dotfiles (empfohlen für Updates): - -```bash -chmod +x copy.sh -./copy.sh -``` - -- Kopieren und Installieren aus den Releases (stable) (beachte, dass dies eine Version älter als "main" ist): - -```bash -chmod +x release.sh -./release.sh -``` - -- UPGRADE.sh für ein Versionsupgrade - > [!IMPORTANT] - > rsync wird benötigt, damit es funktioniert. - > KooL's Hyprland sollte bereits laufen, bevor du dieses Skript verwendest. - -```bash -chmod +x upgrade.sh -./upgrade.sh -``` - -## ❗❗❗ DEBIAN AND UBUNTU INFORMATION! - -- Ich bekomme eine große Menge an Nachrichten über das Updaten eurer KooL Hyprland dotfiles. Es gibt dazu eine Info im [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - -#### ⚠️⚠️⚠️ ACHTUNG - SKRIPT-ERSTELLTE BACKUPS - -> [!CAUTION] -> copy.sh, release.sh und auch upgrade.sh erstellen Backups! -> Schaue dir bitte manuell den Inhalt deines $HOME/.config Ordners an -> Entferne alle nicht mehr benötigten Backups bitte selbst - -#### 🛎️ kleiner Hinweis zu Hintergrundbildern - -- ständardmäßig werden nur einige Hintergründe kopiert (jeweils 1 dunkeles und helles plus 3 weitere). Dir wird angeboten werden, weitere Hintergrundbilder herunterzuladen. Du kannst dir die verfügbaren Hintergründe [`HIER`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) anschauen. - -#### ⚠️⚠️⚠️ WICHTIG! Nach dem Kopieren / Der Installation der Dotfiles - -- Drücke SUPER W und wähle ein Hintergrundbild. Desweiteren wird hierdurch wallust für waybar, kitty (tty) und die rofi Themes aktiviert. Wenn du copy.sh oder release.sh benutzt hast, wird ein Standard Hintergrund gesetzt sein und die Initialisierung ist bereits gesehen - -- Für Nvidia Benutzer. Stelle sicher, dass du deine `~/.config/hypr/UserConfigs/ENVariables.conf` anpasst (unbedingt empfohlen). - -* Für NVIDIA Benutzer, schaue dir diese Informationen [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) an. - -- Wenn die bereits deine Keybinds, Monitoren, usw. eingestellt hast... Kopiere die Einstellungen von dem Backup vor dem Logout / Reboot. (empfohlen) - -#### 📖 Bekannte Probleme und mögliche Lösungen - -- Schau dir diese Seite an [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) und checke die [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) - -#### 🙋 FRAGEN ?!?! ⁉️ - -- FAQ! Die Dotfiles funktionieren auch auf anderen Distros! Stelle nur sicher, die richtigen Pakete vorher zu installieren! Falls du dich dann besser fühlst, ich benutze die selbe Konfiguration für mein Gentoo:) -- KLEINER HINWEIS! Klicke auf das HINT! Waybar Modul (Notiz, nur in Waybar default und Simple-L [TOP] Layout verfügbar). Kann auch mit der Tastenkombination `SUPER H` gestartet werden -- Weitere Fragen? Klicke hier um das [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) zu durchstöbern. -- Falls du eine ältere Version der Konfiguration haben möchtest, sind diese in meinem "Archive" Repository verfügbar. Siehe [HIER](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) - -#### ⌨ Keybinds - -- Keybinds [`KLICKE`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) - -#### 🙏 Hilfe gebraucht - -- Wenn du Verbesserungen der Dotfiles oder Konfigurationen hast, mache gerne einen PR für die Verbesserung. Ich heiße Verbesserungen immer Willkommen, da ich genau wie ihr Alle immer viel Neues lerne. - -#### ✍️ Contributing - -- Möchtest du contributen? Klicke [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) für eine Anleitung. - -#### 🤷‍♂️ TO DO! - -- [ ] Dotfiles verbesser - 🚧 in ständiger Entwicklung -- ~~[ ] Vielleicht zu starship wechseln. Jedoch limitiere Themes im Vergleich zu oh-my-zsh.~~ momentan nicht geplant - -#### 🔮 Discord Server - -- Bitte joine meinem [Discord](https://discord.com/invite/kool-tech-world) - -#### 💖 Unterstützung - -- ein Star auf meinen Github repos wäre nett 🌟 - -- Abbonieren meinen Youtube Kanal [YouTube](https://www.youtube.com/@Ja.KooLit) - -- du kannst mich auch mit Kaffees oder BTC unterstützen 😊 - -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) - -oder - -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) - -Oder du kannst auch Krypto an meine btc wallet spenden :) - -> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i - -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) - -## 🫰 Vielen Dank für die stars 🩷 - -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README.jp.md b/i18n/README.jp.md deleted file mode 100644 index 901ea2ca..00000000 --- a/i18n/README.jp.md +++ /dev/null @@ -1,230 +0,0 @@ -[![en](https://img.shields.io/badge/lang-en-yellow.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) -[![ro](https://img.shields.io/badge/lang-ro-green.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ro.md) -[![ru](https://img.shields.io/badge/lang-ru-red.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ru.md) -[![ua](https://img.shields.io/badge/lang-ua-white.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ua.md) -[![de](https://img.shields.io/badge/lang-de-magenta.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.de.md) - -

- -

- -

- -

- -
- -
- -![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) - -
-
- -

- Sparkles - KooL's Hyprland Dotfiles Showcase - Sparkles -

- -
- -https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - -
- -### 📹 動画による説明 - -- ページの下部へ - -### 🎞️ AGS概要デモ - -- 概要が気になる場合は、こちらにAGS概要の短いデモがあります [Youtube リンク](https://youtu.be/zY5SLNPBJTs) - - - ---- - -[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALLATION)](https://git.io/typing-svg) - -### 🚩 🏁 自動化された Distro-Hyprland のインストールスクリプトのクローンと起動 🇵🇭 - -> [注意!] -> FISH SHELLを使用している場合、この関数を使わないでください。代わりにDistro-Hyprlandをクローンしinstall.shを実行してください。 - -- 重要:これを動作させるには、`curl` パッケージが必要です。 - -```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) -``` - -- 上記のコマンドを使用して、Distro-Hyprland のインストールスクリプトを自動的にクローンできます。 -- インストールスクリプトをクローンし、`install.sh` を実行します😎 - -### 👁️‍🗨️ 私の Hyprland のインストールスクリプト 👁️‍🗨️ - -- 選択したディストロ向けの自動化された Hyprland スクリプトです。これらの設定をインストールするオプションを選択した場合、対応する dotfiles を取得します。 - -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) - -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) - -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) - -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) - -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) - -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) - ---- - -### 🪧 注意 🪧 - -- このリポジトリにはパッケージは含まれておらず、インストールもされません。含まれているのは、あらかじめ設定された Hyprland の設定ファイルや dotfiles のみです。 -- 必要なパッケージについてはインストールスクリプトを参照してください。ただし、少なくとも Hyprland のパッケージは必須です 😏😏😏 -- このリポジトリは、上記の Distro-Hyprland インストールスクリプトによって、プリセットの dotfiles をダウンロードするオプションを選択した場合に取得されます。 - -### 👀 スクリーンショット 👀 - -- すべてのスクリーンショットはここにまとめられています。 [スクリーンショット](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) - -### 📦 変更点 - -- 変更を簡単に追跡できるよう、[変更ログ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) 変更が注目に値する場合はスクリーンショットも含めます! - -> [注意!] -> デフォルトでは、Kools Dots はスケーリングなしの 2K (1440p) ディスプレイ向けに調整・設定されています。 - -### 💥 コピー / インストール / アップデート手順 💥 - -- [`ここに詳細を記載しています`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - > [注意!] - > 自動コピーのスクリプトである "copy.sh" は、コピー対象のディレクトリをバックアップします。しかし、スクリプトがバックアップに失敗する可能性もあるため、手動でバックアップを取るのも良い考えです! -- このリポジトリを git でクローンし、ディレクトリを移動して、実行可能にした後、スクリプトを実行してください。 - -> Master ブランチからダウンロードする場合 - -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -cd Hyprland-Dots -``` - -> 開発ブランチ(Development)からダウンロードする場合(開発およびテスト用) - -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development -cd Hyprland-Dots -``` - -- プリセット dotfiles の自動コピー/インストール(更新推奨) - -```bash -chmod +x copy.sh -./copy.sh -``` - -- リリース版(Stable)からコピー/インストール(メインより 1 バージョン古い点に注意) - -```bash -chmod +x release.sh -./release.sh -``` - -- UPGRADE.sh の関数について - > [重要!] - > これを動作させるには rsync が必要です。 - > この機能を使用する前に、KooL's Hyprland が既に動作している必要があります。 - -```bash -chmod +x upgrade.sh -./upgrade.sh -``` - -## ❗❗❗ DEBIAN および UBUNTU ユーザーへの注意! - -- KooL Hyprland の dotfiles 更新に関するメッセージが大量に届いています。 [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update)に大きく注意書きを記載しました。 - -#### ⚠️⚠️⚠️ スクリプトによって作成されたバックアップについての注意 - -> [超重要!] -> copy.sh、release.sh、そして upgrade.sh もバックアップを作成します! -> $HOME/.config の内容を手動で確認してください。 -> 不要なバックアップは手動で削除してください。 - -#### 🛎️ 壁紙に関するちょっとした注意 - -- デフォルトでは、ダークとライト各 1 枚+3 枚の壁紙のみがコピーされます。追加の壁紙をダウンロードするオプションが提供されます。追加の壁紙は[`THIS`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) リンクからプレビュー/確認できます。 - -#### ⚠️⚠️⚠️これらの dotfiles をコピー / インストールした後の必須事項 - -- SUPER + W を押して壁紙を設定してください。これにより、Waybar、Kitty(TTY)、Rofi のテーマ用に Wallust を初期化できます。ただし、copy.sh または release.sh を使用した場合は、初期壁紙がプリセットされているため、この手順は不要です。 - -- NVIDIA の所有者へ。`~/.config/hypr/UserConfigs/ENVariables.conf`を編集してください(強く推奨)。 - -* NVIDIA の所有者とユーザーへ。 インsトール後に [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)を確認してください。 - -- 既に独自のキー設定やモニター設定を行っている場合は、ログアウトや再起動前に作成されたバックアップからコピーしてください。(推奨) - -#### 📖 既知の問題と可能な解決策 - -- こちらのページを確認してください: [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) & [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) - -#### 🙋 質問対応 ⁉️ - -- FAQ! はい、これらの dotfiles は他のディストロでも使用できます!ただし、適切なパッケージを事前にインストールしてください!安心できるなら、私も Gentoo で同じ設定を使っています :) -- クイックヒント! Waybar モジュールの HINT! をクリックしてください。 (Waybar のデフォルトレイアウトおよび Simple-L [TOP] レイアウトでのみ利用可能)。キーバインドの `SUPER H`でも起動できます。 -- さらに質問がありますか? こちらをクリックして [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/)を参照してください。 -- 旧設定が欲しい場合, すべて "Archive" リポジトリにまとめています。詳しくは[HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive)をご覧ください。 - -#### ⌨ キーバインド - -- キーバインドの説明はこちら: [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) - -#### 🙏 スペシャルリクエスト - -- dotfilesや設定の改善がある場合改善のためのPRをぜひ送ってください!私も皆さんと同じように学んでいるので、改善は大歓迎です! -- Waybar のスタイル(新しいパネルスタイルは微調整が必要)→ ご協力をお願いできますか?🙏 - -#### 🤷‍♂️ TO DO! - -- [ ] dotfiles の微調整 - 🚧 常に改善中 -- ~~[ ] Starship に切り替えるかも?(ただし、oh-my-zsh に比べてテーマが少ない)~~ → 今のところ予定なし - -#### 🔮 Discord サーバー - -- ぜひ [Discord](https://discord.com/invite/kool-tech-world)に参加してください! - -### 💖 サポート - -- GitHub のリポジトリにスターを付けてもらえると嬉しいです 🌟 - -- YouTube チャンネル登録もよろしく!→ [YouTube](https://www.youtube.com/@Ja.KooLit) - -- コーヒーや BTC でサポートも歓迎 😊 - -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) - -または - -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) - -また、BTC での寄付も可能です - -> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i - -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) - -## 🫰 スターありがとう 🩷 - -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README.ro.md b/i18n/README.ro.md deleted file mode 100644 index 52d60eb7..00000000 --- a/i18n/README.ro.md +++ /dev/null @@ -1,200 +0,0 @@ -[![en](https://img.shields.io/badge/lang-en-yellow.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) -[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.jp.md) -[![ru](https://img.shields.io/badge/lang-ru-red.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ru.md) -[![ua](https://img.shields.io/badge/lang-ua-white.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ua.md) -[![de](https://img.shields.io/badge/lang-de-magenta.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.de.md) - -

- -

- -

- -

- - -
- -
- -![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) - -
-
- -

- Sparkles - Prezentarea fișierelor Dotfiles Hyprland ale lui KooL - Sparkles -

- -
- -https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - -
- -### 📹 Ghiduri video -- la finalul paginii - -### 🎞️ Demo AGS Overview -- în caz că te întrebi, aici este un demo scurt al AGS overview [Link YouTube](https://youtu.be/zY5SLNPBJTs) - - - ---- -[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALARE)](https://git.io/typing-svg) -### 🚩 🏁 Scripturi automate de instalare Hyprland pentru distribuții, clonare și pornire 🇵🇭 -> [!ATENȚIE] -> Dacă folosești FISH SHELL, NU utiliza această funcție. Clonează Distro-Hyprland și rulează install.sh în schimb. - -- NOTĂ: ai nevoie de pachetul `curl` pentru ca aceasta să funcționeze - -```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) -``` - -- acum poți folosi comanda de mai sus pentru a clona automat scripturile de instalare Distro-Hyprland de mai jos -- va clona scripturile de instalare și va porni `install.sh` 😎 - -### 👁️‍🗨️ Scripturile mele de instalare Hyprland 👁️‍🗨️ -- Scripturi automate Hyprland pentru distribuția aleasă, care vor descărca aceste dotfiles dacă optezi pentru instalarea acestor configurații - -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (FAZĂ ALPHA)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) - ---- - -### 🪧 Atenție 🪧 -- Acest repo NU conține și NU va instala niciun pachet. Acestea sunt doar configurații Hyprland pre-configurate sau dotfiles -- consultă scripturile de instalare pentru a vedea ce pachete trebuie instalate... dar cel puțin, pachetele Hyprland sunt necesare 😏😏😏 evident!! -- Acest repo va fi descărcat de scripturile de instalare Distro-Hyprland de mai sus dacă optezi pentru descărcarea dotfiles-urilor pre-configurate - -### 👀 Capturi de ecran 👀 -- Toate capturile de ecran sunt colectate aici [Capturi de ecran](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) - -### 📦 Ce mai e nou? -- Pentru a urmări ușor modificările, voi actualiza [Jurnalul de modificări](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Capturile de ecran vor fi incluse dacă modificările merită menționate! - -> [!NOTĂ] -> Reține că, în mod implicit, dotfiles-urile lui Kool sunt ajustate/configurate pentru afișaje 2k (1440p) fără scalare. - -### 💥 Instrucțiuni de copiere / instalare / actualizare 💥 -- [`MAI MULTE INFORMAȚII AICI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) -> [!Notă] -> Scriptul automat de copiere „copy.sh” va crea copii de rezervă ale directoarelor care urmează să fie copiate. Totuși, este o idee bună să faci manual o copie de rezervă, în caz că scriptul nu reușește să o facă! - -- clonează acest repo folosind git. Schimbă directorul, fă scriptul executabil și rulează-l - -> pentru a descărca din ramura Master -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -cd Hyprland-Dots -``` - -> pentru a descărca din ramura Development (dezvoltare și testare) -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development -cd Hyprland-Dots -``` - -- copiere/instalare automată a dotfiles-urilor pre-configurate (recomandat pentru actualizări) -```bash -chmod +x copy.sh -./copy.sh -``` - -- pentru a copia/instala din versiuni (stabile) (notă: aceasta este cu o versiune mai veche decât cea din ramura principală) -```bash -chmod +x release.sh -./release.sh -``` - -- Funcția UPGRADE.sh -> [!IMPORTANT] -> Ai nevoie de rsync pentru ca aceasta să funcționeze -> trebuie să ai deja configurat și funcțional Hyprland-ul lui KooL înainte de a folosi această funcție -```bash -chmod +x upgrade.sh -./upgrade.sh -``` - -## ❗❗❗ ATENȚIE PENTRU UTILIZATORII DEBIAN ȘI UBUNTU! -- Primesc o mulțime de mesaje despre actualizarea dotfiles-urilor Hyprland ale lui KooL. Am făcut o notă mare în [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - -#### ⚠️⚠️⚠️ ATENȚIE - COPII DE REZERVĂ CREATE DE SCRIPT -> [!ATENȚIE] -> copy.sh, release.sh și chiar upgrade.sh creează o copie de rezervă! -> Verifică manual conținutul din $HOME/.config -> Șterge manual toate copiile de rezervă de care nu ai nevoie - -#### 🛎️ o mică notă despre imagini de fundal -- în mod implicit, doar câteva imagini de fundal vor fi copiate (1 pentru modul întunecat și deschis, plus încă 3). Ți se va oferi opțiunea de a descărca mai multe imagini de fundal. Poți previzualiza/verifica imaginile de fundal suplimentare de la [`ACEST`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) Link - -#### ⚠️⚠️⚠️ OBLIGATORIU! după copierea / instalarea acestor dotfiles -+ Apasă SUPER W și setează o imagine de fundal. Aceasta este și pentru a inițializa wallust pentru temele waybar, kitty (tty) și rofi. Totuși, dacă folosești copy.sh sau release.sh, va exista o imagine de fundal inițială presetată și nu va trebui să faci asta - -+ Proprietari de Nvidia. Asigură-te că editezi `~/.config/hypr/UserConfigs/ENVariables.conf` (foarte recomandat). -- Utilizatori / proprietari de Nvidia, după instalare, verifică [`ACESTA`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) - -+ Dacă ți-ai setat deja propriile comenzi rapide, monitoare etc., doar copiază-le din copia de rezervă creată înainte de a te deconecta sau reporni. (recomandat) - -#### 📖 Probleme cunoscute și posibile soluții -- verifică această pagină [Întrebări frecvente](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) și [PROBLEME NESOLUȚIONATE](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) - -#### 🙋 ÎNTREBĂRI ?!?! ⁉️ -- Întrebări frecvente! Da, poți folosi aceste dotfiles pe alte distribuții! Asigură-te doar că instalezi pachetele corespunzătoare mai întâi! Dacă te face să te simți mai bine, folosesc aceeași configurație pe Gentoo-ul meu :) -- SFAT RAPID! Apasă pe modulul HINT! din Waybar (notă: disponibil doar în layout-urile Waybar implicit și Simple-L [SUS]). Poate fi lansat cu comanda rapidă `SUPER H` -- Mai multe întrebări? click aici pentru a răsfoi acest [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Dacă vrei vechile configurații, acestea sunt colectate în repo-ul meu „Archive”. Vezi [AICI](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) - -#### ⌨ Comenzi rapide -- Comenzi rapide [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) - -#### 🙏 Cerere specială -- Dacă ai îmbunătățiri pentru dotfiles sau configurații, nu ezita să trimiți un PR pentru îmbunătățiri. Întotdeauna primesc cu bucurie îmbunătățiri, deoarece și eu învăț, la fel ca voi! - -#### ✍️ Contribuții -- Vrei să contribui? Click [`AICI`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) pentru un ghid despre cum să contribui - -#### 🤷‍♂️ DE FĂCUT! -- [ ] Ajustarea dotfiles-urilor - 🚧 în progres constant -- ~~[ ] Posibil trecerea la starship? Deși starship are teme limitate comparativ cu oh-my-zsh.~~ fără planuri pentru moment - -#### 🔮 Server Discord -- te invit să te alături serverului meu [Discord](https://discord.com/invite/kool-tech-world) - -#### 💖 Suport -- o stea pe repo-urile mele de Github ar fi minunată 🌟 - -- Abonează-te la canalul meu de YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) - -- de asemenea, poți oferi suport prin cafele sau btc 😊 - -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) - -sau - -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) - -Sau poți dona criptomonede pe portofelul meu btc :) -> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i - -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) - -## 🫰 Mulțumesc pentru stele 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README.ru.md b/i18n/README.ru.md deleted file mode 100644 index 274198a6..00000000 --- a/i18n/README.ru.md +++ /dev/null @@ -1,199 +0,0 @@ -[![en](https://img.shields.io/badge/lang-en-yellow.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) -[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.jp.md) -[![ro](https://img.shields.io/badge/lang-ro-green.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ro.md) -[![ua](https://img.shields.io/badge/lang-ua-white.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ua.md) -[![de](https://img.shields.io/badge/lang-de-magenta.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.de.md) - -

- -

- -

- -

- -
- -
- -![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) - -
-
- -

- Sparkles - Демонстрация Dotfiles Hyprland от KooL - Sparkles -

- -
- -https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - -
- -### 📹 Видеообзоры -- в конце страницы - -### 🎞️ Демо AGS Overview -- если интересно, вот короткое демо AGS overview [Ссылка на YouTube](https://youtu.be/zY5SLNPBJTs) - - - ---- -[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=УСТАНОВКА)](https://git.io/typing-svg) -### 🚩 🏁 Автоматические скрипты установки Hyprland для дистрибутивов, клонирование и запуск 🇵🇭 -> [!ВНИМАНИЕ] -> Если вы используете FISH SHELL, НЕ используйте эту функцию. Вместо этого клонируйте Distro-Hyprland и запустите install.sh. - -- ПРИМЕЧАНИЕ: для работы требуется пакет `curl` - -```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) -``` - -- теперь вы можете использовать приведённую выше команду для автоматического клонирования скриптов установки Distro-Hyprland, указанных ниже -- она клонирует скрипты установки и запускает `install.sh` 😎 - -### 👁️‍🗨️ Мои скрипты установки Hyprland 👁️‍🗨️ -- Автоматические скрипты Hyprland для выбранного дистрибутива, которые загрузят эти dotfiles, если вы выберете установку этих конфигураций - -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (АЛЬФА-СТАДИЯ)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) - ---- - -### 🪧 Внимание 🪧 -- Этот репозиторий НЕ содержит и НЕ устанавливает пакеты. Это только предварительно настроенные конфигурации Hyprland или dotfiles -- обратитесь к скриптам установки, чтобы узнать, какие пакеты нужно установить... но, как минимум, пакеты Hyprland необходимы 😏😏😏 очевидно!! -- Этот репозиторий будет загружен скриптами установки Distro-Hyprland, указанными выше, если вы выберете загрузку предварительно настроенных dotfiles - -### 👀 Скриншоты 👀 -- Все скриншоты собраны здесь [Скриншоты](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) - -### 📦 Что нового? -- Чтобы легко отслеживать изменения, я буду обновлять [Журнал изменений](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скриншоты будут включены, если изменения заслуживают упоминания! - -> [!ПРИМЕЧАНИЕ] -> Обратите внимание, что по умолчанию dotfiles от KooL настроены для дисплеев 2k (1440p) без масштабирования. - -### 💥 Инструкции по копированию / установке / обновлению 💥 -- [`БОЛЬШЕ ИНФОРМАЦИИ ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) -> [!Примечание] -> Автоматический скрипт копирования „copy.sh“ создаёт резервные копии директорий, которые будут скопированы. Тем не менее, рекомендуется сделать резервную копию вручную на случай, если скрипт не сможет этого сделать! - -- клонируйте этот репозиторий с помощью git. Перейдите в директорию, сделайте скрипт исполняемым и запустите его - -> для загрузки из ветки Master -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -cd Hyprland-Dots -``` - -> для загрузки из ветки Development (разработка и тестирование) -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development -cd Hyprland-Dots -``` - -- автоматическое копирование/установка предварительно настроенных dotfiles (рекомендуется для обновлений) -```bash -chmod +x copy.sh -./copy.sh -``` - -- для копирования/установки из релизов (стабильные) (примечание: это на одну версию старше, чем в основной ветке) -```bash -chmod +x release.sh -./release.sh -``` - -- Функция UPGRADE.sh -> [!ВАЖНО] -> Для работы требуется rsync -> у вас уже должен быть настроен и запущен Hyprland от KooL перед использованием этой функции -```bash -chmod +x upgrade.sh -./upgrade.sh -``` - -## ❗❗❗ ВНИМАНИЕ ДЛЯ ПОЛЬЗОВАТЕЛЕЙ DEBIAN И UBUNTU! -- Я получаю огромное количество сообщений об обновлении dotfiles Hyprland от KooL. Я сделал большую заметку в [`ВИКИ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - -#### ⚠️⚠️⚠️ ВНИМАНИЕ - РЕЗЕРВНЫЕ КОПИИ, СОЗДАННЫЕ СКРИПТОМ -> [!ВНИМАНИЕ] -> copy.sh, release.sh и даже upgrade.sh создают резервную копию! -> Проверьте содержимое в $HOME/.config вручную -> Удалите вручную все ненужные резервные копии - -#### 🛎️ Небольшое замечание об обоях -- по умолчанию копируется только несколько обоев (по 1 для тёмного и светлого режима, плюс ещё 3). Вам будет предложено загрузить дополнительные обои. Вы можете просмотреть/проверить дополнительные обои по [`ЭТОЙ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) ссылке - -#### ⚠️⚠️⚠️ ОБЯЗАТЕЛЬНО! после копирования / установки этих dotfiles -+ Нажмите SUPER W и установите обои. Это также необходимо для инициализации wallust для тем waybar, kitty (tty) и rofi. Однако, если вы используете copy.sh или release.sh, начальные обои уже будут установлены, и этого делать не придётся - -+ Владельцы Nvidia. Обязательно отредактируйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настоятельно рекомендуется). -- Пользователи / владельцы Nvidia, после установки проверьте [`ЭТО`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) - -+ Если вы уже настроили свои горячие клавиши, мониторы и т.д., просто скопируйте их из созданной резервной копии перед выходом из системы или перезагрузкой. (рекомендуется) - -#### 📖 Известные проблемы и возможные решения -- ознакомьтесь с этой страницей [Часто задаваемые вопросы](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) и [НЕРЕШЁННЫЕ ПРОБЛЕМЫ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) - -#### 🙋 ВОПРОСЫ ?!?! ⁉️ -- Часто задаваемые вопросы! Да, вы можете использовать эти dotfiles на других дистрибутивах! Просто убедитесь, что сначала установлены соответствующие пакеты! Если вам от этого легче, я использую ту же конфигурацию на моём Gentoo :) -- БЫСТРЫЙ СОВЕТ! Нажмите на модуль HINT! в Waybar (примечание: доступно только в стандартном и Simple-L [ВЕРХНЕМ] макете Waybar). Можно запустить с помощью горячей клавиши `SUPER H` -- Ещё вопросы? щёлкните здесь, чтобы просмотреть эту [ВИКИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Если вам нужны старые конфигурации, они собраны в моём репозитории „Archive“. Смотрите [ЗДЕСЬ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) - -#### ⌨ Горячие клавиши -- Горячие клавиши [`ЩЁЛКНИТЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) - -#### 🙏 Особая просьба -- Если у вас есть улучшения для dotfiles или конфигураций, не стесняйтесь отправить PR для улучшений. Я всегда приветствую улучшения, так как тоже учусь, как и вы! - -#### ✍️ Вклад -- Хотите внести вклад? Щёлкните [`ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для руководства по внесению вклада - -#### 🤷‍♂️ ЧТО ДЕЛАТЬ! -- [ ] Настройка dotfiles - 🚧 в постоянном прогрессе -- ~~[ ] Возможно, переход на starship? Хотя у starship ограниченные темы по сравнению с oh-my-zsh.~~ пока планов нет - -#### 🔮 Сервер Discord -- приглашаю присоединиться к моему [Discord](https://discord.com/invite/kool-tech-world) - -#### 💖 Поддержка -- звезда на моих репозиториях GitHub была бы замечательной 🌟 - -- Подпишитесь на мой канал YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) - -- также вы можете поддержать через кофе или btc 😊 - -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) - -или - -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) - -Или вы можете пожертвовать криптовалюту на мой btc-кошелёк :) -> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i - -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) - -## 🫰 Спасибо за звёзды 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README.ua.md b/i18n/README.ua.md deleted file mode 100644 index 9d1038ec..00000000 --- a/i18n/README.ua.md +++ /dev/null @@ -1,199 +0,0 @@ -[![en](https://img.shields.io/badge/lang-en-yellow.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) -[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.jp.md) -[![ro](https://img.shields.io/badge/lang-ro-green.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ro.md) -[![ru](https://img.shields.io/badge/lang-ru-red.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.ru.md) -[![de](https://img.shields.io/badge/lang-de-magenta.svg)](https://github.com/JaKooLit/Hyprland-Dots/blob/main/i18n/README.de.md) - -

- -

- -

- -

- -
- -
- -![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) - -
-
- -

- Sparkles - Презентація Dotfiles Hyprland від KooL - Sparkles -

- -
- -https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - -
- -### 📹 Відеоогляди -- у кінці сторінки - -### 🎞️ Демо AGS Overview -- якщо вам цікаво, ось коротке демо AGS overview [Посилання на YouTube](https://youtu.be/zY5SLNPBJTs) - - - ---- -[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=ВСТАНОВЛЕННЯ)](https://git.io/typing-svg) -### 🚩 🏁 Автоматичні скрипти встановлення Hyprland для дистрибутивів, клонування та запуск 🇵🇭 -> [!УВАГА] -> Якщо ви використовуєте FISH SHELL, НЕ використовуйте цю функцію. Натомість клонуйте Distro-Hyprland і запустіть install.sh. - -- ПРИМІТКА: для роботи потрібен пакет `curl` - -```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) -``` - -- тепер ви можете використовувати наведену вище команду для автоматичного клонування скриптів встановлення Distro-Hyprland, зазначених нижче -- вона клонує скрипти встановлення та запускає `install.sh` 😎 - -### 👁️‍🗨️ Мої скрипти встановлення Hyprland 👁️‍🗨️ -- Автоматичні скрипти Hyprland для обраного дистрибутива, які завантажать ці dotfiles, якщо ви оберете встановлення цих конфігурацій - -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (АЛЬФА-ЕТАП)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) - ---- - -### 🪧 Увага 🪧 -- Цей репозиторій НЕ містить і НЕ встановлює жодних пакетів. Це лише попередньо налаштовані конфігурації Hyprland або dotfiles -- зверніться до скриптів встановлення, щоб дізнатися, які пакети потрібно встановити... але принаймні пакети Hyprland потрібні 😏😏😏 очевидно!! -- Цей репозиторій буде завантажено скриптами встановлення Distro-Hyprland, зазначеними вище, якщо ви оберете завантаження попередньо налаштованих dotfiles - -### 👀 Скріншоти 👀 -- Усі скріншоти зібрано тут [Скріншоти](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) - -### 📦 Що нового? -- Щоб легко відстежувати зміни, я оновлюватиму [Журнал змін](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скріншоти будуть додані, якщо зміни варті згадки! - -> [!ПРИМІТКА] -> Зверніть увагу, що за замовчуванням dotfiles від KooL налаштовані для дисплеїв 2k (1440p) без масштабування. - -### 💥 Інструкції з копіювання / встановлення / оновлення 💥 -- [`БІЛЬШЕ ІНФОРМАЦІЇ ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) -> [!Примітака] -> Автоматичний скрипт копіювання „copy.sh“ створює резервні копії директорій, які будуть скопійовані. Проте рекомендується зробити резервну копію вручну на випадок, якщо скрипт не зможе цього зробити! - -- клонуйте цей репозиторій за допомогою git. Перейдіть до директорії, зробіть скрипт виконуваним і запустіть його - -> для завантаження з гілки Master -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -cd Hyprland-Dots -``` - -> для завантаження з гілки Development (розробка та тестування) -```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development -cd Hyprland-Dots -``` - -- автоматичне копіювання/встановлення попередньо налаштованих dotfiles (рекомендується для оновлень) -```bash -chmod +x copy.sh -./copy.sh -``` - -- для копіювання/встановлення з релізів (стабільні) (примітка: це на одну версію старше, ніж у основній гілці) -```bash -chmod +x release.sh -./release.sh -``` - -- Функція UPGRADE.sh -> [!ВАЖЛИВО] -> Для роботи потрібен rsync -> у вас уже має бути налаштований і запущений Hyprland від KooL перед використанням цієї функції -```bash -chmod +x upgrade.sh -./upgrade.sh -``` - -## ❗❗❗ УВАГА ДЛЯ КОРИСТУВАЧІВ DEBIAN ТА UBUNTU! -- Я отримую величезну кількість повідомлень щодо оновлення dotfiles Hyprland від KooL. Я зробив велику примітку у [`ВІКІ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) - -#### ⚠️⚠️⚠️ УВАГА - РЕЗЕРВНІ КОПІЇ, СТВОРЕНІ СКРИПТОМ -> [!УВАГА] -> copy.sh, release.sh і навіть upgrade.sh створюють резервну копію! -> Перевірте вміст у $HOME/.config вручну -> Видаліть вручну всі непотрібні резервні копії - -#### 🛎️ Невелика примітка про шпалери -- за замовчуванням копіюється лише кілька шпалер (по 1 для темного та світлого режиму, плюс ще 3). Вам буде запропоновано завантажити додаткові шпалери. Ви можете переглянути/перевірити додаткові шпалери за [`ЦИМ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) посиланням - -#### ⚠️⚠️⚠️ ОБОВ’ЯЗКОВО! після копіювання / встановлення цих dotfiles -+ Натисніть SUPER W і встановіть шпалери. Це також необхідно для ініціалізації wallust для тем waybar, kitty (tty) і rofi. Однак, якщо ви використовуєте copy.sh або release.sh, початкові шпалери вже будуть встановлені, і цього робити не доведеться - -+ Власники Nvidia. Обов’язково відредагуйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настійно рекомендується). -- Користувачі / власники Nvidia, після встановлення перевірте [`ЦЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) - -+ Якщо ви вже налаштували власні гарячі клавіші, монітори тощо, просто скопіюйте їх із створеної резервної копії перед виходом із системи або перезавантаженням. (рекомендується) - -#### 📖 Відомі проблеми та можливі рішення -- перегляньте цю сторінку [Поширені запитання](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) та [НЕРОЗВ’ЯЗАНІ ПРОБЛЕМИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) - -#### 🙋 ЗАПИТАННЯ ?!?! ⁉️ -- Поширені запитання! Так, ви можете використовувати ці dotfiles на інших дистрибутивах! Просто переконайтеся, що спочатку встановлено відповідні пакети! Якщо вам від цього легше, я використовую ту саму конфігурацію на моєму Gentoo :) -- ШВИДКА ПОРАДА! Натисніть на модуль HINT! у Waybar (примітка: доступно лише у стандартному та Simple-L [ВЕРХНЬОМУ] макеті Waybar). Можна запустити за допомогою гарячої клавіші `SUPER H` -- Ще запитання? натисніть тут, щоб переглянути цю [ВІКІ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Якщо вам потрібні старі конфігурації, вони зібрані в моєму репозиторії „Archive“. Дивіться [ТУТ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) - -#### ⌨ Гарячі клавіші -- Гарячі клавіші [`КЛІКНІТЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) - -#### 🙏 Особливе прохання -- Якщо у вас є покращення для dotfiles або конфігурацій, не соромтеся надіслати PR для покращень. Я завжди вітаю покращення, адже я також вчуся, як і ви! - -#### ✍️ Внесок -- Хочете зробити внесок? Клікніть [`ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для посібника зі внесення внеску - -#### 🤷‍♂️ ЩО РОБИТИ! -- [ ] Налаштування dotfiles - 🚧 у постійному прогресі -- ~~[ ] Можливо, перехід на starship? Хоча у starship обмежені теми порівняно з oh-my-zsh.~~ поки що планів немає - -#### 🔮 Сервер Discord -- запрошую приєднатися до мого [Discord](https://discord.com/invite/kool-tech-world) - -#### 💖 Підтримка -- зірка на моїх репозиторіях GitHub була б чудовою 🌟 - -- Підпишіться на мій канал YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) - -- також ви можете підтримати через каву або btc 😊 - -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) - -або - -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) - -Або ви можете пожертвувати криптовалюту на мій btc-гаманець :) -> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i - -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) - -## 🫰 Дякую за зірки 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README/README.de.md b/i18n/README/README.de.md new file mode 100644 index 00000000..e097c816 --- /dev/null +++ b/i18n/README/README.de.md @@ -0,0 +1,233 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./README.jp.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./README.ro.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./README.ru.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./README.ua.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./README.fr.md) + +

+ +

+ +

+ +

+ +
+ +
+ +![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + KooL's Hyprland Dotfiles Showcase + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 Ein Video Guide + +- folgt nach der Textanleitung + +### 🎞️ AGS Übersicht DEMO + +- Hier ist eine kurze Demo der AGS [Youtube LINK](https://youtu.be/zY5SLNPBJTs) + + + +--- + +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALLATION)](https://git.io/typing-svg) + +### 🚩 🏁 Distro Hyprland Installationsskripte herunterladen und ausführen + +> [!VORSICHT] +> Wenn du die FISH-SHELL benutzt, VERWENDE diese Funktion NICHT. Klone stattdessen das Distro-Hyprland-Repository und führe install.sh aus. + +- HINWEIS: Das Paket `curl` muss installiert sein, um die Skripte herunterzuladen + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- Mit dem obigen Befehl kannst du jetzt automatisch die Hyprland Installationsskripte herunterladen und ausführen. +- Das Skript wird weitere Installationsskripte klonen und die `install.sh` starten. 😎 + +### 👁️‍🗨️ Meine Hyprland-Installationsskripte 👁️‍🗨️ + +- Automatisierte Hyprland-Skripte für ein Distro deiner Wahl. Diese Skripte laden, wenn ben;tigt, meine vorkonfigurierten Dotfiles +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) + +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) + +- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) + +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) + +- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) + +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) + +--- + +### 🪧 Achtung 🪧 + +- Dieses Repository enthält keine Pakete und wird keine Pakete installieren. Es enthält nur vorkonfigurierte Hyprland-Configs/Dotfiles. +- In den Installationsskripten kann man die benötigten Pakete finden. Zumindest müssen aber die Hyprland-Pakete installiert sein 😏😏😏 logisch!! +- Dieses Repository wird von den oben beschriebenen Distro Hyprland-Installationsskripten heruntergeladen, wenn du dich entscheidest, die vorkonfigurierten Dotfiles verwenden zu wollen. + +### 👀 Screenshots 👀 + +- Beispiel Screenshots findest du hier [Screenshots](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 Whats new? + +- Um Änderungen leicht nachzuvollziehen, werde ich die [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) regelmäßig aktualisieren. Es werden neue Screenshots hinzugefügt, wenn die Änderungen erwähnenswert sind! + +> [!NOTE] +> Bitte beachte, dass Kools Dots standardmäßig für einen 2K (1440p) Monitor ohne Skalierung angepasst und konfiguriert sind. + +### 💥 Kopieren / Installation / Update-Anleitung 💥 + +- [`Weiter Infos hier`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + > [!Note] + > Das Kopierskript "copy.sh" erstellt Backups der zu kopierenden Konfigurationsverzeichnisse. Sollte das Skript fehlschlagen, empfiehlt es sich, manuell ein Backup zu erstellen. +- Klone das Repository mit Git, wechsle in das Verzeichnis, mache die Datei ausführbar und führe das Skript aus: + +> Um den Master-Branch herunterzuladen + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> Um den Entwicklungs-Branch (Development & Testing) herunterzuladen: + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- Automatisiertes Kopieren und Installieren der vorkonfigurierten Dotfiles (empfohlen für Updates): + +```bash +chmod +x copy.sh +./copy.sh +``` + +- Kopieren und Installieren aus den Releases (stable) (beachte, dass dies eine Version älter als "main" ist): + +```bash +chmod +x release.sh +./release.sh +``` + +- UPGRADE.sh für ein Versionsupgrade + > [!IMPORTANT] + > rsync wird benötigt, damit es funktioniert. + > KooL's Hyprland sollte bereits laufen, bevor du dieses Skript verwendest. + +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ DEBIAN AND UBUNTU INFORMATION! + +- Ich bekomme eine große Menge an Nachrichten über das Updaten eurer KooL Hyprland dotfiles. Es gibt dazu eine Info im [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + +#### ⚠️⚠️⚠️ ACHTUNG - SKRIPT-ERSTELLTE BACKUPS + +> [!CAUTION] +> copy.sh, release.sh und auch upgrade.sh erstellen Backups! +> Schaue dir bitte manuell den Inhalt deines $HOME/.config Ordners an +> Entferne alle nicht mehr benötigten Backups bitte selbst + +#### 🛎️ kleiner Hinweis zu Hintergrundbildern + +- ständardmäßig werden nur einige Hintergründe kopiert (jeweils 1 dunkeles und helles plus 3 weitere). Dir wird angeboten werden, weitere Hintergrundbilder herunterzuladen. Du kannst dir die verfügbaren Hintergründe [`HIER`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) anschauen. + +#### ⚠️⚠️⚠️ WICHTIG! Nach dem Kopieren / Der Installation der Dotfiles + +- Drücke SUPER W und wähle ein Hintergrundbild. Desweiteren wird hierdurch wallust für waybar, kitty (tty) und die rofi Themes aktiviert. Wenn du copy.sh oder release.sh benutzt hast, wird ein Standard Hintergrund gesetzt sein und die Initialisierung ist bereits gesehen + +- Für Nvidia Benutzer. Stelle sicher, dass du deine `~/.config/hypr/UserConfigs/ENVariables.conf` anpasst (unbedingt empfohlen). + +* Für NVIDIA Benutzer, schaue dir diese Informationen [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) an. + +- Wenn die bereits deine Keybinds, Monitoren, usw. eingestellt hast... Kopiere die Einstellungen von dem Backup vor dem Logout / Reboot. (empfohlen) + +#### 📖 Bekannte Probleme und mögliche Lösungen + +- Schau dir diese Seite an [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) und checke die [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 FRAGEN ?!?! ⁉️ + +- FAQ! Die Dotfiles funktionieren auch auf anderen Distros! Stelle nur sicher, die richtigen Pakete vorher zu installieren! Falls du dich dann besser fühlst, ich benutze die selbe Konfiguration für mein Gentoo:) +- KLEINER HINWEIS! Klicke auf das HINT! Waybar Modul (Notiz, nur in Waybar default und Simple-L [TOP] Layout verfügbar). Kann auch mit der Tastenkombination `SUPER H` gestartet werden +- Weitere Fragen? Klicke hier um das [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) zu durchstöbern. +- Falls du eine ältere Version der Konfiguration haben möchtest, sind diese in meinem "Archive" Repository verfügbar. Siehe [HIER](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) + +#### ⌨ Keybinds + +- Keybinds [`KLICKE`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 Hilfe gebraucht + +- Wenn du Verbesserungen der Dotfiles oder Konfigurationen hast, mache gerne einen PR für die Verbesserung. Ich heiße Verbesserungen immer Willkommen, da ich genau wie ihr Alle immer viel Neues lerne. + +#### ✍️ Contributing + +- Möchtest du contributen? Klicke [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) für eine Anleitung. + +#### 🤷‍♂️ TO DO! + +- [ ] Dotfiles verbesser - 🚧 in ständiger Entwicklung +- ~~[ ] Vielleicht zu starship wechseln. Jedoch limitiere Themes im Vergleich zu oh-my-zsh.~~ momentan nicht geplant + +#### 🔮 Discord Server + +- Bitte joine meinem [Discord](https://discord.com/invite/kool-tech-world) + +#### 💖 Unterstützung + +- ein Star auf meinen Github repos wäre nett 🌟 + +- Abbonieren meinen Youtube Kanal [YouTube](https://www.youtube.com/@Ja.KooLit) + +- du kannst mich auch mit Kaffees oder BTC unterstützen 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +oder + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +Oder du kannst auch Krypto an meine btc wallet spenden :) + +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 Vielen Dank für die stars 🩷 + +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README/README.fr.md b/i18n/README/README.fr.md new file mode 100644 index 00000000..f570a9dc --- /dev/null +++ b/i18n/README/README.fr.md @@ -0,0 +1,255 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./README.jp.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./README.ro.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./README.ru.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./README.ua.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./README.de.md) + +

+ +

+ +

+ +

+ +
+ +
+ +![Stars du dépôt GitHub](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![Dernier commit GitHub](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![Taille du dépôt GitHub](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + Démonstration des Dotfiles Hyprland de KooL + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 Une vidéo de présentation complète + +- en bas + + + +--- + +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALLATION)](https://git.io/typing-svg) + +### 🚩 🏁 Clonage et lancement des scripts d'installation automatique Distro-Hyprland 🇵🇭 + +> [!CAUTION] +> Si vous utilisez le SHELL FISH, N'UTILISEZ PAS cette fonction. Clonez Distro-Hyprland et exécutez install.sh à la place. + +- NOTE: vous avez besoin du pacquet `curl` pour que ça fonctionne + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- Vous pouvez utiliser la commande ci-dessus pour cloner automatiquement les scripts d'installation `Distro-Hyprland` +- Cela va cloner le script d'installation et démarrer `install.sh` 😎 + +### 👁️‍🗨️ Mes scripts d'installation Hyprland 👁️‍🗨️ + +- Scripts Hyprland automatisés pour la distribution de votre choix, qui importeront ces dotfiles si vous choisissez d'installer ces configurations + +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) + +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) + +- [Fedora-Linux (43/Rawhide)](https://github.com/JaKooLit/Fedora-Hyprland) + +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) + +- [NixOS (25.05+)](https://github.com/JaKooLit/NixOS-Hyprland) + +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10 (déprécié)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 (déprécié)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Ubuntu 25.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.10) + +--- + +### 🪧 Attention 🪧 + +- Ce dépôt ne contient PAS en ne va PAS installer de paquets. Ce sont seulement des configurations hyprland préconfigurées ou dotfiles +- Référez-vous aux scripts d'installation pour connaître les paquets nécessaires... mais au minimum, les paquets Hyprland sont requis +- Ce dépôt sera récupéré par les scripts d'installation Distro-Hyprland ci-dessus si vous choisissez de télécharger les dotfiles préconfigurés + +### 👀 Captures d'écran 👀 + +- Toutes les captures d'écran sont ici [Captures d'écran](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 Quoi de neuf ? +- Pour suivre les changements plus facilement, je vais mettre à jour les [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Des captures d'écran seront incluses si les modifications en valent la peine ! + +> [!NOTE] +> Veuillez noter que par défaut, les Dots de KooL sont ajustées / configurées pour un affichage en 2k (1440p) sans mise à l'échelle. + +### 💥 Instruction de copie / Installation / Mise à jour 💥 + +- [`Plus d'infos ici`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + > [!Note] + > Le script de copie automatique `copy.sh` va créer des sauvegardes des répertoires destinés à être copiés. + > Cependant, c'est toujours une bonne idée de faire une sauvegare manuelle au cas où le script n'arriverait pas à sauvegarder votre configuration. + > Si vous avez déjà une configuration hyprland, désinstallez-la d'abord, ou créez un nouvel utilisateur et installez avec cet utilisateur. + +- Clonez ce dépôt en utilisant `git`. +- Changez de répertoire, i.e. `cd Arch-Hyprland` +- Rendez `install.sh` exécutable `chmod +x ./install.sh` +- Lancez le script `./install.sh` + +> To download from Master branch +> Pour télécharger depuis la branche Master +> Note : Ubuntu est une exception, il y a des branches spécifiques aux versions + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> Pour télécharger depuis la branche Développement (développement et tests) +> Non recommandé pour des systèmes qui ne sont pas pour tester + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- Copie/installation automatique des dots préconfigurés (recommandé pour mettre à jour) + +```bash +chmod +x copy.sh +./copy.sh +``` + +- to copy/install from releases (stable) (note this is 1 version older than in main) +- Pour copier/installer depuis les releases (stable) (notez que celles-ci ont 1 version de retard par rapport au main) + +```bash +chmod +x release.sh +./release.sh +``` + +- Fonction UPGRADE.sh + > [!IMPORTANT] + > Vous avez besoin de rsync pour que ça fonctionne + > Vous devez déjà avoir la configuration Hyprland de KooL activée avant d'utiliser cette fonction + +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ DEBIAN ET UBUNTU ! + +- Debian 13 + - Compile désormais Hyprland 0.51.1 depuis les sources en utilisant le script `install.sh` + - Donc la version actuelle de Hyprland-Dots est compatible seulement dans ces conditions. + +- Ubuntu 24.04/25.10 + - Nous utilisons désormais un PPA pour obtenir des versions plus récentes de Hyprland + - Ainsi, la version actuelle de ces Dotfiles est compatible si vous avez effectué la mise à jour vers la configuration basée sur le PPA + +#### ⚠️⚠️⚠️ ATTENTION - SAUVEGARDES CRÉES par le SCRIPT + +> [!CAUTION] +> `copy.sh`, `release.sh` et aussi `upgrade.sh` créent des sauvegardes ! +> Veuillez inspecter manuellement le contenu dans votre `$HOME/.config` +> Supprimez manuellement les sauvegardes que vous ne voulez pas. + +#### 🛎️ une petite note sur les fonds d'écran + +- par défaut, seuls quelques fonds d'écran seront copiés (1 sombre et 1 clair plus 3 autres). Il vous sera proposé d'en télécharger plus. Vous pouvez prévisualiser/consulter les fonds d'écran additionnel va [`CE LIEN`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) + +#### ⚠️⚠️⚠️ INDISPENSABLE ! après avoir copié / installé ces dots + +- Appuyez sur `SUPER + W` et choisissez un fond d'écran. Cela permet également d'initialiser les thèmes wallust pour waybar, kitty (tty) et rofi. +- Cependant, si vous utilisez `copy.sh` ou `release.sh`, il y aura un fond d'écran sera déjà réglé et vous n'avez pas besoin de faire ceci. + +- Utilisateurs de Nvidia. Assurez-vous de modifier vos `~/.config/hypr/UserConfigs/ENVariables.conf` (fortement recommandé). + +* Utilisateurs de Nvidia, après l'installation, regardez [`CECI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + +- If you have already set your own keybinds, monitors, etc.... Just copy over from backup created before log-out or reboot. (recommended) +- Si vous aviez déjà configuré vos propres raccourcis, écrans, etc... Copiez juste depuis les sauvegardes avant de vous déconnecter ou redémarrer. (recommendé) + +#### 📖 Problèmes connus et solutions possibles + +- Allez voir cette page [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) et [PROBLÈMES NON RÉGLÉS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 QUESTIONS ?!?! ⁉️ + +- FAQ ! Oui, vous pouvez utiliser ces dotfiles sur d'autres distros ! Assurez-vous juste d'installer les paquets nécessaire ! Si ça peut vous rassurer, j'utilise la même configuration sur mon Gentoo :) +- ASTUCE RAPIDE ! Cliquez sur le module Waybar "HINT!" (notez qu'il es seulement disponible dans les disposition default et Simple-L [TOP]). Peut aussi être lancé avec le raccourci `SUPER + H` +- Plus de questions ? Cliquez ici pour aller naviguer dans ce [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) +- If you want the old configs, it is collected on my "Archive" repo. See [HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Si vous voulez les anciennes configurations, elles sont dans mon dépôt "Archive". Aller voir [ICI](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) + +#### ⌨ Raccourcis clavier + +- Raccourcis clavier [`CLIC`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 Requête spéciale + +- Si vous aves des améliorations pour les dotfiles ou les configurations, vous êtes libres de soumettre une PR pour améliorer. +- Les améliorations sont toujours les bienvenues, car j'apprends moi aussi tout comme vous ! + +#### ✍️ Contribuer + +- Vous voulez contribuer ? Cliquer [`ICI`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) pour un guide sur les contributions +> Merci à tous ceux qui ont contribuer du code, ou supporté sur le server Discord. Vos efforts sont grandement appréciés + +#### 🤷‍♂️ À FAIRE ! + +- [ ] Peaufiner les dots - 🚧 en progrès constant + +#### 🔮 Serveur Discord + +- N'hésitez pas à rejoindre mon serveur [Discord](https://discord.com/invite/kool-tech-world) + +#### 💖 Support + +- Une Star sur mes dépôts Github serait sympa 🌟 + +- Abonnez vous à ma chaine Youtube [YouTube](https://www.youtube.com/@Ja.KooLit) + +- Vous pouvez aussi me supporter avec des cafés ou btc 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +ou + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +Ou vous pouvez donner de la crypto sur mon portefeuille btc :) + +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 Merci pour les stars 🩷 + +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) + + +### Traductions des documents + +- Spanish: [Código de Conducta](./CODE_OF_CONDUCT.es.md) · [Guía de mensajes de commit](./COMMIT_MESSAGE_GUIDELINES.es.md) · [Guía de contribución](./CONTRIBUTING.es.md) diff --git a/i18n/README/README.jp.md b/i18n/README/README.jp.md new file mode 100644 index 00000000..baa8267e --- /dev/null +++ b/i18n/README/README.jp.md @@ -0,0 +1,231 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./README.ro.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./README.ru.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./README.ua.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./README.de.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./README.fr.md) + +

+ +

+ +

+ +

+ +
+ +
+ +![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + KooL's Hyprland Dotfiles Showcase + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 動画による説明 + +- ページの下部へ + +### 🎞️ AGS概要デモ + +- 概要が気になる場合は、こちらにAGS概要の短いデモがあります [Youtube リンク](https://youtu.be/zY5SLNPBJTs) + + + +--- + +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALLATION)](https://git.io/typing-svg) + +### 🚩 🏁 自動化された Distro-Hyprland のインストールスクリプトのクローンと起動 🇵🇭 + +> [注意!] +> FISH SHELLを使用している場合、この関数を使わないでください。代わりにDistro-Hyprlandをクローンしinstall.shを実行してください。 + +- 重要:これを動作させるには、`curl` パッケージが必要です。 + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- 上記のコマンドを使用して、Distro-Hyprland のインストールスクリプトを自動的にクローンできます。 +- インストールスクリプトをクローンし、`install.sh` を実行します😎 + +### 👁️‍🗨️ 私の Hyprland のインストールスクリプト 👁️‍🗨️ + +- 選択したディストロ向けの自動化された Hyprland スクリプトです。これらの設定をインストールするオプションを選択した場合、対応する dotfiles を取得します。 + +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) + +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) + +- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) + +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) + +- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) + +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) + +--- + +### 🪧 注意 🪧 + +- このリポジトリにはパッケージは含まれておらず、インストールもされません。含まれているのは、あらかじめ設定された Hyprland の設定ファイルや dotfiles のみです。 +- 必要なパッケージについてはインストールスクリプトを参照してください。ただし、少なくとも Hyprland のパッケージは必須です 😏😏😏 +- このリポジトリは、上記の Distro-Hyprland インストールスクリプトによって、プリセットの dotfiles をダウンロードするオプションを選択した場合に取得されます。 + +### 👀 スクリーンショット 👀 + +- すべてのスクリーンショットはここにまとめられています。 [スクリーンショット](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 変更点 + +- 変更を簡単に追跡できるよう、[変更ログ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) 変更が注目に値する場合はスクリーンショットも含めます! + +> [注意!] +> デフォルトでは、Kools Dots はスケーリングなしの 2K (1440p) ディスプレイ向けに調整・設定されています。 + +### 💥 コピー / インストール / アップデート手順 💥 + +- [`ここに詳細を記載しています`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + > [注意!] + > 自動コピーのスクリプトである "copy.sh" は、コピー対象のディレクトリをバックアップします。しかし、スクリプトがバックアップに失敗する可能性もあるため、手動でバックアップを取るのも良い考えです! +- このリポジトリを git でクローンし、ディレクトリを移動して、実行可能にした後、スクリプトを実行してください。 + +> Master ブランチからダウンロードする場合 + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> 開発ブランチ(Development)からダウンロードする場合(開発およびテスト用) + +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- プリセット dotfiles の自動コピー/インストール(更新推奨) + +```bash +chmod +x copy.sh +./copy.sh +``` + +- リリース版(Stable)からコピー/インストール(メインより 1 バージョン古い点に注意) + +```bash +chmod +x release.sh +./release.sh +``` + +- UPGRADE.sh の関数について + > [重要!] + > これを動作させるには rsync が必要です。 + > この機能を使用する前に、KooL's Hyprland が既に動作している必要があります。 + +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ DEBIAN および UBUNTU ユーザーへの注意! + +- KooL Hyprland の dotfiles 更新に関するメッセージが大量に届いています。 [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update)に大きく注意書きを記載しました。 + +#### ⚠️⚠️⚠️ スクリプトによって作成されたバックアップについての注意 + +> [超重要!] +> copy.sh、release.sh、そして upgrade.sh もバックアップを作成します! +> $HOME/.config の内容を手動で確認してください。 +> 不要なバックアップは手動で削除してください。 + +#### 🛎️ 壁紙に関するちょっとした注意 + +- デフォルトでは、ダークとライト各 1 枚+3 枚の壁紙のみがコピーされます。追加の壁紙をダウンロードするオプションが提供されます。追加の壁紙は[`THIS`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) リンクからプレビュー/確認できます。 + +#### ⚠️⚠️⚠️これらの dotfiles をコピー / インストールした後の必須事項 + +- SUPER + W を押して壁紙を設定してください。これにより、Waybar、Kitty(TTY)、Rofi のテーマ用に Wallust を初期化できます。ただし、copy.sh または release.sh を使用した場合は、初期壁紙がプリセットされているため、この手順は不要です。 + +- NVIDIA の所有者へ。`~/.config/hypr/UserConfigs/ENVariables.conf`を編集してください(強く推奨)。 + +* NVIDIA の所有者とユーザーへ。 インsトール後に [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)を確認してください。 + +- 既に独自のキー設定やモニター設定を行っている場合は、ログアウトや再起動前に作成されたバックアップからコピーしてください。(推奨) + +#### 📖 既知の問題と可能な解決策 + +- こちらのページを確認してください: [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) & [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 質問対応 ⁉️ + +- FAQ! はい、これらの dotfiles は他のディストロでも使用できます!ただし、適切なパッケージを事前にインストールしてください!安心できるなら、私も Gentoo で同じ設定を使っています :) +- クイックヒント! Waybar モジュールの HINT! をクリックしてください。 (Waybar のデフォルトレイアウトおよび Simple-L [TOP] レイアウトでのみ利用可能)。キーバインドの `SUPER H`でも起動できます。 +- さらに質問がありますか? こちらをクリックして [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/)を参照してください。 +- 旧設定が欲しい場合, すべて "Archive" リポジトリにまとめています。詳しくは[HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive)をご覧ください。 + +#### ⌨ キーバインド + +- キーバインドの説明はこちら: [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 スペシャルリクエスト + +- dotfilesや設定の改善がある場合改善のためのPRをぜひ送ってください!私も皆さんと同じように学んでいるので、改善は大歓迎です! +- Waybar のスタイル(新しいパネルスタイルは微調整が必要)→ ご協力をお願いできますか?🙏 + +#### 🤷‍♂️ TO DO! + +- [ ] dotfiles の微調整 - 🚧 常に改善中 +- ~~[ ] Starship に切り替えるかも?(ただし、oh-my-zsh に比べてテーマが少ない)~~ → 今のところ予定なし + +#### 🔮 Discord サーバー + +- ぜひ [Discord](https://discord.com/invite/kool-tech-world)に参加してください! + +### 💖 サポート + +- GitHub のリポジトリにスターを付けてもらえると嬉しいです 🌟 + +- YouTube チャンネル登録もよろしく!→ [YouTube](https://www.youtube.com/@Ja.KooLit) + +- コーヒーや BTC でサポートも歓迎 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +または + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +また、BTC での寄付も可能です + +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 スターありがとう 🩷 + +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README/README.ro.md b/i18n/README/README.ro.md new file mode 100644 index 00000000..f1066394 --- /dev/null +++ b/i18n/README/README.ro.md @@ -0,0 +1,201 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./README.jp.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./README.ru.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./README.ua.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./README.de.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./README.fr.md) + +

+ +

+ +

+ +

+ + +
+ +
+ +![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + Prezentarea fișierelor Dotfiles Hyprland ale lui KooL + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 Ghiduri video +- la finalul paginii + +### 🎞️ Demo AGS Overview +- în caz că te întrebi, aici este un demo scurt al AGS overview [Link YouTube](https://youtu.be/zY5SLNPBJTs) + + + +--- +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=INSTALARE)](https://git.io/typing-svg) +### 🚩 🏁 Scripturi automate de instalare Hyprland pentru distribuții, clonare și pornire 🇵🇭 +> [!ATENȚIE] +> Dacă folosești FISH SHELL, NU utiliza această funcție. Clonează Distro-Hyprland și rulează install.sh în schimb. + +- NOTĂ: ai nevoie de pachetul `curl` pentru ca aceasta să funcționeze + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- acum poți folosi comanda de mai sus pentru a clona automat scripturile de instalare Distro-Hyprland de mai jos +- va clona scripturile de instalare și va porni `install.sh` 😎 + +### 👁️‍🗨️ Scripturile mele de instalare Hyprland 👁️‍🗨️ +- Scripturi automate Hyprland pentru distribuția aleasă, care vor descărca aceste dotfiles dacă optezi pentru instalarea acestor configurații + +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (FAZĂ ALPHA)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) + +--- + +### 🪧 Atenție 🪧 +- Acest repo NU conține și NU va instala niciun pachet. Acestea sunt doar configurații Hyprland pre-configurate sau dotfiles +- consultă scripturile de instalare pentru a vedea ce pachete trebuie instalate... dar cel puțin, pachetele Hyprland sunt necesare 😏😏😏 evident!! +- Acest repo va fi descărcat de scripturile de instalare Distro-Hyprland de mai sus dacă optezi pentru descărcarea dotfiles-urilor pre-configurate + +### 👀 Capturi de ecran 👀 +- Toate capturile de ecran sunt colectate aici [Capturi de ecran](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 Ce mai e nou? +- Pentru a urmări ușor modificările, voi actualiza [Jurnalul de modificări](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Capturile de ecran vor fi incluse dacă modificările merită menționate! + +> [!NOTĂ] +> Reține că, în mod implicit, dotfiles-urile lui Kool sunt ajustate/configurate pentru afișaje 2k (1440p) fără scalare. + +### 💥 Instrucțiuni de copiere / instalare / actualizare 💥 +- [`MAI MULTE INFORMAȚII AICI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +> [!Notă] +> Scriptul automat de copiere „copy.sh” va crea copii de rezervă ale directoarelor care urmează să fie copiate. Totuși, este o idee bună să faci manual o copie de rezervă, în caz că scriptul nu reușește să o facă! + +- clonează acest repo folosind git. Schimbă directorul, fă scriptul executabil și rulează-l + +> pentru a descărca din ramura Master +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> pentru a descărca din ramura Development (dezvoltare și testare) +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- copiere/instalare automată a dotfiles-urilor pre-configurate (recomandat pentru actualizări) +```bash +chmod +x copy.sh +./copy.sh +``` + +- pentru a copia/instala din versiuni (stabile) (notă: aceasta este cu o versiune mai veche decât cea din ramura principală) +```bash +chmod +x release.sh +./release.sh +``` + +- Funcția UPGRADE.sh +> [!IMPORTANT] +> Ai nevoie de rsync pentru ca aceasta să funcționeze +> trebuie să ai deja configurat și funcțional Hyprland-ul lui KooL înainte de a folosi această funcție +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ ATENȚIE PENTRU UTILIZATORII DEBIAN ȘI UBUNTU! +- Primesc o mulțime de mesaje despre actualizarea dotfiles-urilor Hyprland ale lui KooL. Am făcut o notă mare în [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + +#### ⚠️⚠️⚠️ ATENȚIE - COPII DE REZERVĂ CREATE DE SCRIPT +> [!ATENȚIE] +> copy.sh, release.sh și chiar upgrade.sh creează o copie de rezervă! +> Verifică manual conținutul din $HOME/.config +> Șterge manual toate copiile de rezervă de care nu ai nevoie + +#### 🛎️ o mică notă despre imagini de fundal +- în mod implicit, doar câteva imagini de fundal vor fi copiate (1 pentru modul întunecat și deschis, plus încă 3). Ți se va oferi opțiunea de a descărca mai multe imagini de fundal. Poți previzualiza/verifica imaginile de fundal suplimentare de la [`ACEST`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) Link + +#### ⚠️⚠️⚠️ OBLIGATORIU! după copierea / instalarea acestor dotfiles ++ Apasă SUPER W și setează o imagine de fundal. Aceasta este și pentru a inițializa wallust pentru temele waybar, kitty (tty) și rofi. Totuși, dacă folosești copy.sh sau release.sh, va exista o imagine de fundal inițială presetată și nu va trebui să faci asta + ++ Proprietari de Nvidia. Asigură-te că editezi `~/.config/hypr/UserConfigs/ENVariables.conf` (foarte recomandat). +- Utilizatori / proprietari de Nvidia, după instalare, verifică [`ACESTA`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + ++ Dacă ți-ai setat deja propriile comenzi rapide, monitoare etc., doar copiază-le din copia de rezervă creată înainte de a te deconecta sau reporni. (recomandat) + +#### 📖 Probleme cunoscute și posibile soluții +- verifică această pagină [Întrebări frecvente](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) și [PROBLEME NESOLUȚIONATE](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 ÎNTREBĂRI ?!?! ⁉️ +- Întrebări frecvente! Da, poți folosi aceste dotfiles pe alte distribuții! Asigură-te doar că instalezi pachetele corespunzătoare mai întâi! Dacă te face să te simți mai bine, folosesc aceeași configurație pe Gentoo-ul meu :) +- SFAT RAPID! Apasă pe modulul HINT! din Waybar (notă: disponibil doar în layout-urile Waybar implicit și Simple-L [SUS]). Poate fi lansat cu comanda rapidă `SUPER H` +- Mai multe întrebări? click aici pentru a răsfoi acest [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) +- Dacă vrei vechile configurații, acestea sunt colectate în repo-ul meu „Archive”. Vezi [AICI](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) + +#### ⌨ Comenzi rapide +- Comenzi rapide [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 Cerere specială +- Dacă ai îmbunătățiri pentru dotfiles sau configurații, nu ezita să trimiți un PR pentru îmbunătățiri. Întotdeauna primesc cu bucurie îmbunătățiri, deoarece și eu învăț, la fel ca voi! + +#### ✍️ Contribuții +- Vrei să contribui? Click [`AICI`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) pentru un ghid despre cum să contribui + +#### 🤷‍♂️ DE FĂCUT! +- [ ] Ajustarea dotfiles-urilor - 🚧 în progres constant +- ~~[ ] Posibil trecerea la starship? Deși starship are teme limitate comparativ cu oh-my-zsh.~~ fără planuri pentru moment + +#### 🔮 Server Discord +- te invit să te alături serverului meu [Discord](https://discord.com/invite/kool-tech-world) + +#### 💖 Suport +- o stea pe repo-urile mele de Github ar fi minunată 🌟 + +- Abonează-te la canalul meu de YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) + +- de asemenea, poți oferi suport prin cafele sau btc 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +sau + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +Sau poți dona criptomonede pe portofelul meu btc :) +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 Mulțumesc pentru stele 🩷 +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README/README.ru.md b/i18n/README/README.ru.md new file mode 100644 index 00000000..c71b0df7 --- /dev/null +++ b/i18n/README/README.ru.md @@ -0,0 +1,200 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./README.jp.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./README.ro.md) +[![ua](https://img.shields.io/badge/lang-ua-white.svg)](./README.ua.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./README.de.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./README.fr.md) + +

+ +

+ +

+ +

+ +
+ +
+ +![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + Демонстрация Dotfiles Hyprland от KooL + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 Видеообзоры +- в конце страницы + +### 🎞️ Демо AGS Overview +- если интересно, вот короткое демо AGS overview [Ссылка на YouTube](https://youtu.be/zY5SLNPBJTs) + + + +--- +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=УСТАНОВКА)](https://git.io/typing-svg) +### 🚩 🏁 Автоматические скрипты установки Hyprland для дистрибутивов, клонирование и запуск 🇵🇭 +> [!ВНИМАНИЕ] +> Если вы используете FISH SHELL, НЕ используйте эту функцию. Вместо этого клонируйте Distro-Hyprland и запустите install.sh. + +- ПРИМЕЧАНИЕ: для работы требуется пакет `curl` + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- теперь вы можете использовать приведённую выше команду для автоматического клонирования скриптов установки Distro-Hyprland, указанных ниже +- она клонирует скрипты установки и запускает `install.sh` 😎 + +### 👁️‍🗨️ Мои скрипты установки Hyprland 👁️‍🗨️ +- Автоматические скрипты Hyprland для выбранного дистрибутива, которые загрузят эти dotfiles, если вы выберете установку этих конфигураций + +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (АЛЬФА-СТАДИЯ)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) + +--- + +### 🪧 Внимание 🪧 +- Этот репозиторий НЕ содержит и НЕ устанавливает пакеты. Это только предварительно настроенные конфигурации Hyprland или dotfiles +- обратитесь к скриптам установки, чтобы узнать, какие пакеты нужно установить... но, как минимум, пакеты Hyprland необходимы 😏😏😏 очевидно!! +- Этот репозиторий будет загружен скриптами установки Distro-Hyprland, указанными выше, если вы выберете загрузку предварительно настроенных dotfiles + +### 👀 Скриншоты 👀 +- Все скриншоты собраны здесь [Скриншоты](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 Что нового? +- Чтобы легко отслеживать изменения, я буду обновлять [Журнал изменений](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скриншоты будут включены, если изменения заслуживают упоминания! + +> [!ПРИМЕЧАНИЕ] +> Обратите внимание, что по умолчанию dotfiles от KooL настроены для дисплеев 2k (1440p) без масштабирования. + +### 💥 Инструкции по копированию / установке / обновлению 💥 +- [`БОЛЬШЕ ИНФОРМАЦИИ ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +> [!Примечание] +> Автоматический скрипт копирования „copy.sh“ создаёт резервные копии директорий, которые будут скопированы. Тем не менее, рекомендуется сделать резервную копию вручную на случай, если скрипт не сможет этого сделать! + +- клонируйте этот репозиторий с помощью git. Перейдите в директорию, сделайте скрипт исполняемым и запустите его + +> для загрузки из ветки Master +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> для загрузки из ветки Development (разработка и тестирование) +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- автоматическое копирование/установка предварительно настроенных dotfiles (рекомендуется для обновлений) +```bash +chmod +x copy.sh +./copy.sh +``` + +- для копирования/установки из релизов (стабильные) (примечание: это на одну версию старше, чем в основной ветке) +```bash +chmod +x release.sh +./release.sh +``` + +- Функция UPGRADE.sh +> [!ВАЖНО] +> Для работы требуется rsync +> у вас уже должен быть настроен и запущен Hyprland от KooL перед использованием этой функции +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ ВНИМАНИЕ ДЛЯ ПОЛЬЗОВАТЕЛЕЙ DEBIAN И UBUNTU! +- Я получаю огромное количество сообщений об обновлении dotfiles Hyprland от KooL. Я сделал большую заметку в [`ВИКИ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + +#### ⚠️⚠️⚠️ ВНИМАНИЕ - РЕЗЕРВНЫЕ КОПИИ, СОЗДАННЫЕ СКРИПТОМ +> [!ВНИМАНИЕ] +> copy.sh, release.sh и даже upgrade.sh создают резервную копию! +> Проверьте содержимое в $HOME/.config вручную +> Удалите вручную все ненужные резервные копии + +#### 🛎️ Небольшое замечание об обоях +- по умолчанию копируется только несколько обоев (по 1 для тёмного и светлого режима, плюс ещё 3). Вам будет предложено загрузить дополнительные обои. Вы можете просмотреть/проверить дополнительные обои по [`ЭТОЙ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) ссылке + +#### ⚠️⚠️⚠️ ОБЯЗАТЕЛЬНО! после копирования / установки этих dotfiles ++ Нажмите SUPER W и установите обои. Это также необходимо для инициализации wallust для тем waybar, kitty (tty) и rofi. Однако, если вы используете copy.sh или release.sh, начальные обои уже будут установлены, и этого делать не придётся + ++ Владельцы Nvidia. Обязательно отредактируйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настоятельно рекомендуется). +- Пользователи / владельцы Nvidia, после установки проверьте [`ЭТО`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + ++ Если вы уже настроили свои горячие клавиши, мониторы и т.д., просто скопируйте их из созданной резервной копии перед выходом из системы или перезагрузкой. (рекомендуется) + +#### 📖 Известные проблемы и возможные решения +- ознакомьтесь с этой страницей [Часто задаваемые вопросы](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) и [НЕРЕШЁННЫЕ ПРОБЛЕМЫ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 ВОПРОСЫ ?!?! ⁉️ +- Часто задаваемые вопросы! Да, вы можете использовать эти dotfiles на других дистрибутивах! Просто убедитесь, что сначала установлены соответствующие пакеты! Если вам от этого легче, я использую ту же конфигурацию на моём Gentoo :) +- БЫСТРЫЙ СОВЕТ! Нажмите на модуль HINT! в Waybar (примечание: доступно только в стандартном и Simple-L [ВЕРХНЕМ] макете Waybar). Можно запустить с помощью горячей клавиши `SUPER H` +- Ещё вопросы? щёлкните здесь, чтобы просмотреть эту [ВИКИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) +- Если вам нужны старые конфигурации, они собраны в моём репозитории „Archive“. Смотрите [ЗДЕСЬ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) + +#### ⌨ Горячие клавиши +- Горячие клавиши [`ЩЁЛКНИТЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 Особая просьба +- Если у вас есть улучшения для dotfiles или конфигураций, не стесняйтесь отправить PR для улучшений. Я всегда приветствую улучшения, так как тоже учусь, как и вы! + +#### ✍️ Вклад +- Хотите внести вклад? Щёлкните [`ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для руководства по внесению вклада + +#### 🤷‍♂️ ЧТО ДЕЛАТЬ! +- [ ] Настройка dotfiles - 🚧 в постоянном прогрессе +- ~~[ ] Возможно, переход на starship? Хотя у starship ограниченные темы по сравнению с oh-my-zsh.~~ пока планов нет + +#### 🔮 Сервер Discord +- приглашаю присоединиться к моему [Discord](https://discord.com/invite/kool-tech-world) + +#### 💖 Поддержка +- звезда на моих репозиториях GitHub была бы замечательной 🌟 + +- Подпишитесь на мой канал YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) + +- также вы можете поддержать через кофе или btc 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +или + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +Или вы можете пожертвовать криптовалюту на мой btc-кошелёк :) +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 Спасибо за звёзды 🩷 +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) diff --git a/i18n/README/README.ua.md b/i18n/README/README.ua.md new file mode 100644 index 00000000..7ef6922a --- /dev/null +++ b/i18n/README/README.ua.md @@ -0,0 +1,200 @@ +[![en](https://img.shields.io/badge/lang-en-yellow.svg)](../../README.md) +[![jp](https://img.shields.io/badge/lang-jp-blue.svg)](./README.jp.md) +[![ro](https://img.shields.io/badge/lang-ro-green.svg)](./README.ro.md) +[![ru](https://img.shields.io/badge/lang-ru-red.svg)](./README.ru.md) +[![de](https://img.shields.io/badge/lang-de-magenta.svg)](./README.de.md) +[![fr](https://img.shields.io/badge/lang-fr-cyan.svg)](./README.fr.md) + +

+ +

+ +

+ +

+ +
+ +
+ +![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) + +
+
+ +

+ Sparkles + Презентація Dotfiles Hyprland від KooL + Sparkles +

+ +
+ +https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 + +
+ +### 📹 Відеоогляди +- у кінці сторінки + +### 🎞️ Демо AGS Overview +- якщо вам цікаво, ось коротке демо AGS overview [Посилання на YouTube](https://youtu.be/zY5SLNPBJTs) + + + +--- +[![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&weight=700&size=22&pause=1000&color=F7077E&vCenter=true&width=435&height=30&lines=ВСТАНОВЛЕННЯ)](https://git.io/typing-svg) +### 🚩 🏁 Автоматичні скрипти встановлення Hyprland для дистрибутивів, клонування та запуск 🇵🇭 +> [!УВАГА] +> Якщо ви використовуєте FISH SHELL, НЕ використовуйте цю функцію. Натомість клонуйте Distro-Hyprland і запустіть install.sh. + +- ПРИМІТКА: для роботи потрібен пакет `curl` + +```bash +sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +``` + +- тепер ви можете використовувати наведену вище команду для автоматичного клонування скриптів встановлення Distro-Hyprland, зазначених нижче +- вона клонує скрипти встановлення та запускає `install.sh` 😎 + +### 👁️‍🗨️ Мої скрипти встановлення Hyprland 👁️‍🗨️ +- Автоматичні скрипти Hyprland для обраного дистрибутива, які завантажать ці dotfiles, якщо ви оберете встановлення цих конфігурацій + +- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (АЛЬФА-ЕТАП)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) + +--- + +### 🪧 Увага 🪧 +- Цей репозиторій НЕ містить і НЕ встановлює жодних пакетів. Це лише попередньо налаштовані конфігурації Hyprland або dotfiles +- зверніться до скриптів встановлення, щоб дізнатися, які пакети потрібно встановити... але принаймні пакети Hyprland потрібні 😏😏😏 очевидно!! +- Цей репозиторій буде завантажено скриптами встановлення Distro-Hyprland, зазначеними вище, якщо ви оберете завантаження попередньо налаштованих dotfiles + +### 👀 Скріншоти 👀 +- Усі скріншоти зібрано тут [Скріншоти](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) + +### 📦 Що нового? +- Щоб легко відстежувати зміни, я оновлюватиму [Журнал змін](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скріншоти будуть додані, якщо зміни варті згадки! + +> [!ПРИМІТКА] +> Зверніть увагу, що за замовчуванням dotfiles від KooL налаштовані для дисплеїв 2k (1440p) без масштабування. + +### 💥 Інструкції з копіювання / встановлення / оновлення 💥 +- [`БІЛЬШЕ ІНФОРМАЦІЇ ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +> [!Примітака] +> Автоматичний скрипт копіювання „copy.sh“ створює резервні копії директорій, які будуть скопійовані. Проте рекомендується зробити резервну копію вручну на випадок, якщо скрипт не зможе цього зробити! + +- клонуйте цей репозиторій за допомогою git. Перейдіть до директорії, зробіть скрипт виконуваним і запустіть його + +> для завантаження з гілки Master +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +cd Hyprland-Dots +``` + +> для завантаження з гілки Development (розробка та тестування) +```bash +git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +cd Hyprland-Dots +``` + +- автоматичне копіювання/встановлення попередньо налаштованих dotfiles (рекомендується для оновлень) +```bash +chmod +x copy.sh +./copy.sh +``` + +- для копіювання/встановлення з релізів (стабільні) (примітка: це на одну версію старше, ніж у основній гілці) +```bash +chmod +x release.sh +./release.sh +``` + +- Функція UPGRADE.sh +> [!ВАЖЛИВО] +> Для роботи потрібен rsync +> у вас уже має бути налаштований і запущений Hyprland від KooL перед використанням цієї функції +```bash +chmod +x upgrade.sh +./upgrade.sh +``` + +## ❗❗❗ УВАГА ДЛЯ КОРИСТУВАЧІВ DEBIAN ТА UBUNTU! +- Я отримую величезну кількість повідомлень щодо оновлення dotfiles Hyprland від KooL. Я зробив велику примітку у [`ВІКІ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) + +#### ⚠️⚠️⚠️ УВАГА - РЕЗЕРВНІ КОПІЇ, СТВОРЕНІ СКРИПТОМ +> [!УВАГА] +> copy.sh, release.sh і навіть upgrade.sh створюють резервну копію! +> Перевірте вміст у $HOME/.config вручну +> Видаліть вручну всі непотрібні резервні копії + +#### 🛎️ Невелика примітка про шпалери +- за замовчуванням копіюється лише кілька шпалер (по 1 для темного та світлого режиму, плюс ще 3). Вам буде запропоновано завантажити додаткові шпалери. Ви можете переглянути/перевірити додаткові шпалери за [`ЦИМ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) посиланням + +#### ⚠️⚠️⚠️ ОБОВ’ЯЗКОВО! після копіювання / встановлення цих dotfiles ++ Натисніть SUPER W і встановіть шпалери. Це також необхідно для ініціалізації wallust для тем waybar, kitty (tty) і rofi. Однак, якщо ви використовуєте copy.sh або release.sh, початкові шпалери вже будуть встановлені, і цього робити не доведеться + ++ Власники Nvidia. Обов’язково відредагуйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настійно рекомендується). +- Користувачі / власники Nvidia, після встановлення перевірте [`ЦЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + ++ Якщо ви вже налаштували власні гарячі клавіші, монітори тощо, просто скопіюйте їх із створеної резервної копії перед виходом із системи або перезавантаженням. (рекомендується) + +#### 📖 Відомі проблеми та можливі рішення +- перегляньте цю сторінку [Поширені запитання](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) та [НЕРОЗВ’ЯЗАНІ ПРОБЛЕМИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) + +#### 🙋 ЗАПИТАННЯ ?!?! ⁉️ +- Поширені запитання! Так, ви можете використовувати ці dotfiles на інших дистрибутивах! Просто переконайтеся, що спочатку встановлено відповідні пакети! Якщо вам від цього легше, я використовую ту саму конфігурацію на моєму Gentoo :) +- ШВИДКА ПОРАДА! Натисніть на модуль HINT! у Waybar (примітка: доступно лише у стандартному та Simple-L [ВЕРХНЬОМУ] макеті Waybar). Можна запустити за допомогою гарячої клавіші `SUPER H` +- Ще запитання? натисніть тут, щоб переглянути цю [ВІКІ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) +- Якщо вам потрібні старі конфігурації, вони зібрані в моєму репозиторії „Archive“. Дивіться [ТУТ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) + +#### ⌨ Гарячі клавіші +- Гарячі клавіші [`КЛІКНІТЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + +#### 🙏 Особливе прохання +- Якщо у вас є покращення для dotfiles або конфігурацій, не соромтеся надіслати PR для покращень. Я завжди вітаю покращення, адже я також вчуся, як і ви! + +#### ✍️ Внесок +- Хочете зробити внесок? Клікніть [`ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для посібника зі внесення внеску + +#### 🤷‍♂️ ЩО РОБИТИ! +- [ ] Налаштування dotfiles - 🚧 у постійному прогресі +- ~~[ ] Можливо, перехід на starship? Хоча у starship обмежені теми порівняно з oh-my-zsh.~~ поки що планів немає + +#### 🔮 Сервер Discord +- запрошую приєднатися до мого [Discord](https://discord.com/invite/kool-tech-world) + +#### 💖 Підтримка +- зірка на моїх репозиторіях GitHub була б чудовою 🌟 + +- Підпишіться на мій канал YouTube [YouTube](https://www.youtube.com/@Ja.KooLit) + +- також ви можете підтримати через каву або btc 😊 + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) + +або + +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) + +Або ви можете пожертвувати криптовалюту на мій btc-гаманець :) +> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i + +![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) + +## 🫰 Дякую за зірки 🩷 +[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) -- cgit v1.2.3 From 535096fd2364203ac45aa06dd17e642d5e7d1021 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sun, 1 Feb 2026 22:10:56 -0500 Subject: Added Hyprshot screen capture ALTSHIFT+S region selection Captures to clipboard and $HOME/Pictures/Screenshots Useful for quick screen grab on keyboards w/o printscreen buttons On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Keybinds.conf new file: config/hypr/scripts/hyprshot.sh --- config/hypr/configs/Keybinds.conf | 1 + config/hypr/scripts/hyprshot.sh | 317 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 318 insertions(+) create mode 100755 config/hypr/scripts/hyprshot.sh (limited to 'config/hypr/scripts') diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index c5821308..0458b4be 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -36,6 +36,7 @@ bindd = $mainMod ALT, V, clipboard manager, exec, $scriptsDir/ClipManager.sh bindd = $mainMod CTRL, R, rofi theme selector, exec, $scriptsDir/RofiThemeSelector.sh bindd = $mainMod CTRL SHIFT, R, rofi theme selector (modified), exec, pkill rofi || true && $scriptsDir/RofiThemeSelector-modified.sh bindd = $mainMod CTRL, K, Kitty theme selector, exec, $scriptsDir/Kitty_themes.sh +bindd = ALT SHIFT , S, Hyprshot Screen Capture, exec, $scriptsDir/hyprshot.sh -m region -o %HOME/Pictures/Screenshots bindd = $mainMod SHIFT, F, fullscreen, fullscreen bindd = $mainMod CTRL, F, maximize window, fullscreen, 1 diff --git a/config/hypr/scripts/hyprshot.sh b/config/hypr/scripts/hyprshot.sh new file mode 100755 index 00000000..0fb976fa --- /dev/null +++ b/config/hypr/scripts/hyprshot.sh @@ -0,0 +1,317 @@ +#!/usr/bin/env bash + +set -e + +function Help() { + cat <&2 printf "$@" +} + +function send_notification() { + if [ $SILENT -eq 1 ]; then + return 0 + fi + + local message=$([ $CLIPBOARD -eq 1 ] && \ + echo "Image copied to the clipboard" || \ + echo "Image saved in ${1} and copied to the clipboard.") + notify-send "Screenshot saved" \ + "${message}" \ + -t "$NOTIF_TIMEOUT" -i "${1}" -a Hyprshot +} + +function trim() { + Print "Geometry: %s\n" "${1}" + local geometry="${1}" + local xy_str=$(echo "${geometry}" | cut -d' ' -f1) + local wh_str=$(echo "${geometry}" | cut -d' ' -f2) + local x=`echo "${xy_str}" | cut -d',' -f1` + local y=`echo "${xy_str}" | cut -d',' -f2` + local width=`echo "${wh_str}" | cut -dx -f1` + local height=`echo "${wh_str}" | cut -dx -f2` + + local max_width=`hyprctl monitors -j | jq -r '[.[] | if (.transform % 2 == 0) then (.x + .width) else (.x + .height) end] | max'` + local max_height=`hyprctl monitors -j | jq -r '[.[] | if (.transform % 2 == 0) then (.y + .height) else (.y + .width) end] | max'` + + local min_x=`hyprctl monitors -j | jq -r '[.[] | (.x)] | min'` + local min_y=`hyprctl monitors -j | jq -r '[.[] | (.y)] | min'` + + local cropped_x=$x + local cropped_y=$y + local cropped_width=$width + local cropped_height=$height + + if ((x + width > max_width)); then + cropped_width=$((max_width - x)) + fi + if ((y + height > max_height)); then + cropped_height=$((max_height - y)) + fi + + if ((x < min_x)); then + cropped_x="$min_x" + cropped_width=$((cropped_width + x - min_x)) + fi + if ((y < min_y)); then + cropped_y="$min_y" + cropped_height=$((cropped_height + y - min_y)) + fi + + local cropped=`printf "%s,%s %sx%s\n" \ + "${cropped_x}" "${cropped_y}" \ + "${cropped_width}" "${cropped_height}"` + Print "Crop: %s\n" "${cropped}" + echo ${cropped} +} + +function save_geometry() { + local geometry="${1}" + local output="" + + if [ $RAW -eq 1 ]; then + grim -g "${geometry}" - + return 0 + fi + + if [ $CLIPBOARD -eq 0 ]; then + mkdir -p "$SAVEDIR" + grim -g "${geometry}" "$SAVE_FULLPATH" + output="$SAVE_FULLPATH" + wl-copy --type image/png < "$output" + [ -z "$COMMAND" ] || { + "$COMMAND" "$output" + } + else + wl-copy --type image/png < <(grim -g "${geometry}" -) + fi + + send_notification $output +} + +function checkRunning() { + sleep 1 + while [[ 1 == 1 ]]; do + if [[ $(pgrep slurp | wc -m) == 0 ]]; then + pkill hyprpicker + exit + fi + done +} + +function begin_grab() { + if [ $FREEZE -eq 1 ] && [ "$(command -v "hyprpicker")" ] >/dev/null 2>&1; then + hyprpicker -r -z & + sleep 0.2 + HYPRPICKER_PID=$! + fi + local option=$1 + case $option in + output) + if [ $CURRENT -eq 1 ]; then + local geometry=`grab_active_output` + elif [ -z $SELECTED_MONITOR ]; then + local geometry=`grab_output` + else + local geometry=`grab_selected_output $SELECTED_MONITOR` + fi + ;; + region) + local geometry=`grab_region` + ;; + window) + if [ $CURRENT -eq 1 ]; then + local geometry=`grab_active_window` + else + local geometry=`grab_window` + fi + geometry=`trim "${geometry}"` + ;; + esac + if [ ${DELAY} -gt 0 ] 2>/dev/null; then + sleep ${DELAY} + fi + save_geometry "${geometry}" +} + +function grab_output() { + slurp -or +} + +function grab_active_output() { + local active_workspace=`hyprctl -j activeworkspace` + local monitors=`hyprctl -j monitors` + Print "Monitors: %s\n" "$monitors" + Print "Active workspace: %s\n" "$active_workspace" + local current_monitor="$(echo $monitors | jq -r 'first(.[] | select(.activeWorkspace.id == '$(echo $active_workspace | jq -r '.id')'))')" + Print "Current output: %s\n" "$current_monitor" + echo $current_monitor | jq -r '"\(.x),\(.y) \(.width/.scale|round)x\(.height/.scale|round)"' +} + +function grab_selected_output() { + local monitor=`hyprctl -j monitors | jq -r '.[] | select(.name == "'$(echo $1)'")'` + Print "Capturing: %s\n" "${1}" + echo $monitor | jq -r '"\(.x),\(.y) \(.width/.scale|round)x\(.height/.scale|round)"' +} + +function grab_region() { + slurp -d +} + +function grab_window() { + local monitors=`hyprctl -j monitors` + local clients=`hyprctl -j clients | jq -r '[.[] | select(.workspace.id | contains('$(echo $monitors | jq -r 'map(.activeWorkspace.id) | join(",")')'))]'` + Print "Monitors: %s\n" "$monitors" + Print "Clients: %s\n" "$clients" + # Generate boxes for each visible window and send that to slurp + # through stdin + local boxes="$(echo $clients | jq -r '.[] | "\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1]) \(.title)"' | cut -f1,2 -d' ')" + Print "Boxes:\n%s\n" "$boxes" + slurp -r <<< "$boxes" +} + +function grab_active_window() { + local active_window=`hyprctl -j activewindow` + local box=$(echo $active_window | jq -r '"\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"' | cut -f1,2 -d' ') + Print "Box:\n%s\n" "$box" + echo "$box" +} + +function parse_mode() { + local mode="${1}" + + case $mode in + window | region | output) + OPTION=$mode + ;; + active) + CURRENT=1 + ;; + *) + hyprctl monitors -j | jq -re '.[] | select(.name == "'$(echo $mode)'")' &>/dev/null + SELECTED_MONITOR=$mode + ;; + esac +} + +function args() { + local options=$(getopt -o hf:o:m:D:dszr:t: --long help,filename:,output-folder:,mode:,delay:,clipboard-only,debug,silent,freeze,raw,notif-timeout: -- "$@") + eval set -- "$options" + + while true; do + case "$1" in + -h | --help) + Help + exit + ;; + -o | --output-folder) + shift; + SAVEDIR=$1 + ;; + -f | --filename) + shift; + FILENAME=$1 + ;; + -D | --delay) + shift; + DELAY=$1 + ;; + -m | --mode) + shift; + parse_mode $1 + ;; + --clipboard-only) + CLIPBOARD=1 + ;; + -d | --debug) + DEBUG=1 + ;; + -z | --freeze) + FREEZE=1 + ;; + -s | --silent) + SILENT=1 + ;; + -r | --raw) + RAW=1 + ;; + -t | --notif-timeout) + shift; + NOTIF_TIMEOUT=$1 + ;; + --) + shift # Skip -- argument + COMMAND=${@:2} + break;; + esac + shift + done + + if [ -z $OPTION ]; then + Print "A mode is required\n\nAvailable modes are:\n\toutput\n\tregion\n\twindow\n" + exit 2 + fi +} + +if [ -z $1 ]; then + Help + exit +fi + +CLIPBOARD=0 +DEBUG=0 +SILENT=0 +RAW=0 +NOTIF_TIMEOUT=5000 +CURRENT=0 +FREEZE=0 +[ -z "$XDG_PICTURES_DIR" ] && type xdg-user-dir &> /dev/null && XDG_PICTURES_DIR=$(xdg-user-dir PICTURES) +FILENAME="$(date +'%Y-%m-%d-%H%M%S_hyprshot.png')" +[ -z "$HYPRSHOT_DIR" ] && SAVEDIR=${XDG_PICTURES_DIR:=~} || SAVEDIR=${HYPRSHOT_DIR} + +args $0 "$@" + +SAVE_FULLPATH="$SAVEDIR/$FILENAME" +[ $CLIPBOARD -eq 0 ] && Print "Saving in: %s\n" "$SAVE_FULLPATH" +begin_grab $OPTION & checkRunning -- cgit v1.2.3 From 68a7844037c52fabe3317e63e8d6c17213f9ae2d Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 4 Feb 2026 14:59:37 -0500 Subject: waybar-cava processes getting started on every waybar config change These changes kill those processes On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Refresh.sh modified: config/hypr/scripts/WaybarCava.sh --- config/hypr/scripts/Refresh.sh | 3 +++ config/hypr/scripts/WaybarCava.sh | 12 ++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Refresh.sh b/config/hypr/scripts/Refresh.sh index 76757aa4..b998b14c 100755 --- a/config/hypr/scripts/Refresh.sh +++ b/config/hypr/scripts/Refresh.sh @@ -22,6 +22,9 @@ for _prs in "${_ps[@]}"; do fi done +# Clean up any Waybar-spawned cava instances (unique temp conf names) +pkill -f 'waybar-cava\..*\.conf' 2>/dev/null || true + # added since wallust sometimes not applying killall -SIGUSR2 waybar # Added sleep for GameMode causing multiple waybar diff --git a/config/hypr/scripts/WaybarCava.sh b/config/hypr/scripts/WaybarCava.sh index 6809e60e..98a8d7f9 100755 --- a/config/hypr/scripts/WaybarCava.sh +++ b/config/hypr/scripts/WaybarCava.sh @@ -10,6 +10,9 @@ if ! command -v cava >/dev/null 2>&1; then exit 1 fi +# Proactively reap any stale Waybar-spawned cava (unique temp conf names) +pkill -f 'waybar-cava\..*\.conf' 2>/dev/null || true + # 0..7 → ▁▂▃▄▅▆▇█ bar="▁▂▃▄▅▆▇█" dict="s/;//g" @@ -32,7 +35,11 @@ printf '%d' $$ >"$pidfile" # Unique temp config + cleanup on exit config_file="$(mktemp "$RUNTIME_DIR/waybar-cava.XXXXXX.conf")" -cleanup() { rm -f "$config_file" "$pidfile"; } +cleanup() { + # Kill children (cava, sed) of this script, then remove files + pkill -P "$$" 2>/dev/null || true + rm -f "$config_file" "$pidfile" +} trap cleanup EXIT INT TERM cat >"$config_file" < Date: Sat, 7 Feb 2026 02:10:44 -0500 Subject: Updated dots-tui-ubuntu-2404 to curent version On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/dots-tui-ubuntu-2404 --- config/hypr/scripts/dots-tui-ubuntu-2404 | Bin 17734136 -> 17736736 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/dots-tui-ubuntu-2404 b/config/hypr/scripts/dots-tui-ubuntu-2404 index f266dba3..9aad6ecf 100755 Binary files a/config/hypr/scripts/dots-tui-ubuntu-2404 and b/config/hypr/scripts/dots-tui-ubuntu-2404 differ -- cgit v1.2.3 From 62f364ed911bff31aa1abc307322f7270aa0aff0 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Fri, 13 Feb 2026 14:40:51 -0500 Subject: Migrate Jakoolit to Linuxbeginnings repo references --- .github/FUNDING.yml | 3 +- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/documentation-update.yml | 2 +- .github/ISSUE_TEMPLATE/feature.yml | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 4 +- CHANGELOG.md | 6 +- CONTRIBUTING.md | 26 ++++----- Distro-Hyprland.sh | 22 ++++---- README.md | 64 ++++++++++------------ archive/release.sh | 20 +++---- archive/upgrade.sh | 2 +- config/cava/config | 2 +- config/fastfetch/config-compact.jsonc | 2 +- config/fastfetch/config-pokemon.jsonc | 2 +- config/fastfetch/config-v2.jsonc | 4 +- config/fastfetch/config.legacy.jsonc | 4 +- config/hypr/Monitor_Profiles/default.conf | 2 +- config/hypr/UserConfigs/00-Readme | 2 +- config/hypr/UserConfigs/01-UserDefaults.conf | 2 +- config/hypr/UserConfigs/ENVariables.conf | 2 +- config/hypr/UserConfigs/Laptops.conf | 2 +- config/hypr/UserConfigs/Startup_Apps.conf | 2 +- config/hypr/UserConfigs/UserAnimations.conf | 2 +- config/hypr/UserConfigs/UserDecorations.conf | 2 +- config/hypr/UserConfigs/UserKeybinds.conf | 2 +- config/hypr/UserConfigs/UserSettings.conf | 2 +- config/hypr/UserConfigs/WindowRules.conf | 2 +- config/hypr/UserConfigs/WorkSpaceRules.conf | 2 +- config/hypr/UserScripts/00-Readme | 2 +- config/hypr/UserScripts/RainbowBorders.bak.sh | 2 +- config/hypr/UserScripts/RofiBeats.sh | 2 +- config/hypr/UserScripts/RofiCalc.sh | 2 +- config/hypr/UserScripts/WallpaperAutoChange.sh | 2 +- config/hypr/UserScripts/WallpaperEffects.sh | 2 +- config/hypr/UserScripts/WallpaperRandom.sh | 2 +- config/hypr/UserScripts/WallpaperSelect.sh | 2 +- config/hypr/UserScripts/Weather.py | 2 +- config/hypr/UserScripts/Weather.sh | 2 +- config/hypr/UserScripts/WeatherWrap.sh | 2 +- config/hypr/UserScripts/ZshChangeTheme.sh | 2 +- config/hypr/animations/00-default.conf | 2 +- config/hypr/animations/01-default - v2.conf | 2 +- config/hypr/animations/03- Disable Animation.conf | 2 +- config/hypr/animations/END-4.conf | 2 +- config/hypr/animations/HYDE - Vertical.conf | 2 +- config/hypr/animations/HYDE - default.conf | 2 +- config/hypr/animations/HYDE - minimal-1.conf | 2 +- config/hypr/animations/HYDE - minimal-2.conf | 2 +- config/hypr/animations/HYDE - optimized.conf | 2 +- config/hypr/animations/ML4W - classic.conf | 2 +- config/hypr/animations/ML4W - dynamic.conf | 2 +- config/hypr/animations/ML4W - fast.conf | 2 +- config/hypr/animations/ML4W - high.conf | 2 +- config/hypr/animations/ML4W - moving.conf | 2 +- config/hypr/animations/ML4W - standard.conf | 2 +- config/hypr/animations/Mahaveer - me-1.conf | 2 +- config/hypr/animations/Mahaveer - me-2.conf | 2 +- config/hypr/application-style.conf | 2 +- config/hypr/configs/ENVariables.conf | 2 +- config/hypr/configs/Keybinds.conf | 4 +- config/hypr/configs/Laptops.conf | 2 +- config/hypr/configs/Startup_Apps.conf | 2 +- config/hypr/configs/SystemSettings.conf | 2 +- config/hypr/configs/WindowRules-pre-53.conf | 2 +- config/hypr/hypridle.conf | 2 +- config/hypr/hyprland.conf | 2 +- config/hypr/hyprlock-1080p.conf | 4 +- config/hypr/hyprlock-2k.conf | 4 +- config/hypr/hyprlock.conf | 4 +- config/hypr/initial-boot.sh | 2 +- config/hypr/monitors.conf | 2 +- config/hypr/scripts/AirplaneMode.sh | 2 +- config/hypr/scripts/Animations.sh | 2 +- config/hypr/scripts/Brightness.sh | 2 +- config/hypr/scripts/BrightnessKbd.sh | 2 +- config/hypr/scripts/ChangeBlur.sh | 2 +- config/hypr/scripts/ChangeLayout.sh | 2 +- config/hypr/scripts/ClipManager.sh | 2 +- config/hypr/scripts/DarkLight.sh | 2 +- config/hypr/scripts/Distro_update.sh | 2 +- config/hypr/scripts/Dropterminal.sh | 2 +- config/hypr/scripts/GameMode.sh | 2 +- config/hypr/scripts/Hypridle.sh | 2 +- config/hypr/scripts/KeyBinds.sh | 2 +- config/hypr/scripts/KeyHints.sh | 4 +- config/hypr/scripts/KeybindsLayoutInit.sh | 2 +- config/hypr/scripts/KeyboardLayout.sh | 2 +- config/hypr/scripts/KillActiveProcess.sh | 2 +- config/hypr/scripts/Kitty_themes.sh | 2 +- config/hypr/scripts/KooLsDotsUpdate.sh | 6 +- config/hypr/scripts/Kool_Quick_Settings.sh | 2 +- config/hypr/scripts/LockScreen.sh | 2 +- config/hypr/scripts/MediaCtrl.sh | 2 +- config/hypr/scripts/MonitorProfiles.sh | 2 +- config/hypr/scripts/OverviewToggle.sh | 2 +- config/hypr/scripts/Polkit-NixOS.sh | 2 +- config/hypr/scripts/Polkit.sh | 2 +- config/hypr/scripts/PortalHyprland.sh | 2 +- config/hypr/scripts/Refresh.sh | 2 +- config/hypr/scripts/RefreshNoWaybar.sh | 2 +- config/hypr/scripts/RofiEmoji.sh | 2 +- config/hypr/scripts/RofiSearch.sh | 2 +- config/hypr/scripts/RofiThemeSelector-modified.sh | 2 +- config/hypr/scripts/RofiThemeSelector.sh | 2 +- config/hypr/scripts/ScreenShot.sh | 2 +- config/hypr/scripts/Sounds.sh | 2 +- config/hypr/scripts/TouchPad.sh | 2 +- config/hypr/scripts/UserConfigsSwitcher.sh | 2 +- config/hypr/scripts/Volume.sh | 2 +- config/hypr/scripts/WallustSwww.sh | 2 +- config/hypr/scripts/WaybarCava.sh | 2 +- config/hypr/scripts/WaybarLayout.sh | 2 +- config/hypr/scripts/WaybarScripts.sh | 2 +- config/hypr/scripts/WaybarStyles.sh | 2 +- config/hypr/scripts/Wlogout.sh | 2 +- config/hypr/scripts/sddm_wallpaper.sh | 2 +- config/hypr/v2.3.21 | 4 +- config/hypr/wallust/wallust-hyprland.conf | 2 +- config/hypr/workspaces.conf | 2 +- config/kitty/kitty-themes/00-Default.conf | 2 +- config/kitty/kitty-themes/01-Wallust.conf | 2 +- config/kitty/kitty.conf | 2 +- config/rofi/0-shared-fonts.rasi | 2 +- config/rofi/config-Animations.rasi | 2 +- config/rofi/config-Monitors.rasi | 2 +- config/rofi/config-calc.rasi | 2 +- config/rofi/config-clipboard.rasi | 2 +- config/rofi/config-edit.rasi | 2 +- config/rofi/config-emoji.rasi | 2 +- config/rofi/config-keybinds.rasi | 2 +- config/rofi/config-kitty-theme.rasi | 2 +- config/rofi/config-rofi-Beats-menu.rasi | 2 +- config/rofi/config-rofi-Beats.rasi | 2 +- config/rofi/config-rofi-theme.rasi | 2 +- config/rofi/config-search.rasi | 2 +- config/rofi/config-wallpaper-effect.rasi | 2 +- config/rofi/config-wallpaper.rasi | 2 +- config/rofi/config-waybar-layout.rasi | 2 +- config/rofi/config-waybar-style.rasi | 2 +- config/rofi/config-zsh-theme.rasi | 2 +- config/rofi/config.rasi | 2 +- config/rofi/themes/KooL_LonerOrZ.rasi | 2 +- config/rofi/themes/KooL_style-1.rasi | 2 +- config/rofi/themes/KooL_style-10-Fancy-v2.rasi | 2 +- config/rofi/themes/KooL_style-10-Fancy.rasi | 2 +- .../rofi/themes/KooL_style-11-Win11-list-dark.rasi | 2 +- .../themes/KooL_style-11-Win11-list-light.rasi | 2 +- config/rofi/themes/KooL_style-12-TOP-Docu.rasi | 2 +- config/rofi/themes/KooL_style-13-Vertical.rasi | 2 +- config/rofi/themes/KooL_style-14.rasi | 2 +- config/rofi/themes/KooL_style-15-solarized.rasi | 2 +- config/rofi/themes/KooL_style-2-Dark.rasi | 2 +- config/rofi/themes/KooL_style-2-Light.rasi | 2 +- config/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 2 +- config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 2 +- config/rofi/themes/KooL_style-4.rasi | 2 +- config/rofi/themes/KooL_style-5.rasi | 2 +- config/rofi/themes/KooL_style-6.rasi | 2 +- config/rofi/themes/KooL_style-7.rasi | 2 +- config/rofi/themes/KooL_style-8.rasi | 2 +- config/rofi/themes/KooL_style-9.rasi | 2 +- config/rofi/wallust/colors-rofi.rasi | 2 +- config/swaync/style.css | 2 +- config/wallust/templates/colors-cava | 2 +- config/wallust/templates/colors-ghostty.conf | 2 +- config/wallust/templates/colors-hyprland.conf | 2 +- config/wallust/templates/colors-kitty.conf | 2 +- config/wallust/templates/colors-rofi.rasi | 2 +- config/wallust/templates/colors-swaync.css | 2 +- config/wallust/templates/colors-waybar.css | 2 +- config/wallust/wallust-kitty.toml | 2 +- config/wallust/wallust.toml | 2 +- config/waybar/Modules | 2 +- config/waybar/ModulesCustom | 2 +- config/waybar/ModulesGroups | 2 +- config/waybar/ModulesVertical | 2 +- config/waybar/ModulesWorkspaces | 2 +- config/waybar/UserModules | 2 +- config/waybar/configs/BOT-&-Left-SouthWest | 2 +- config/waybar/configs/BOT-&-Right-SouthEast | 2 +- config/waybar/configs/BOT-Camellia | 2 +- config/waybar/configs/BOT-Chrysanthemum | 2 +- config/waybar/configs/BOT-Default | 2 +- config/waybar/configs/BOT-Default-Laptop | 2 +- config/waybar/configs/BOT-Gardenia | 2 +- config/waybar/configs/BOT-Peony | 2 +- config/waybar/configs/BOT-Simple | 2 +- config/waybar/configs/BOT-Sleek | 2 +- config/waybar/configs/LEFT-WestWing | 2 +- config/waybar/configs/LEFT-WestWing-v2 | 2 +- config/waybar/configs/RIGHT-EastWing | 2 +- config/waybar/configs/RIGHT-EastWing-v2 | 2 +- config/waybar/configs/TOP-&-BOT-SummitSplit | 2 +- config/waybar/configs/TOP-&-BOT-SummitSplit-glass | 2 +- config/waybar/configs/TOP-&-BOT-SummitSplit-v2 | 2 +- config/waybar/configs/TOP-&-Left-NorthWest | 2 +- config/waybar/configs/TOP-&-Right-NorthEast | 2 +- config/waybar/configs/TOP-0-Ja-0 | 2 +- config/waybar/configs/TOP-Arrow | 2 +- config/waybar/configs/TOP-Camellia | 2 +- config/waybar/configs/TOP-Chrysanthemum | 2 +- config/waybar/configs/TOP-Default | 2 +- config/waybar/configs/TOP-Default-Laptop | 2 +- config/waybar/configs/TOP-Default-Laptop-glass | 2 +- config/waybar/configs/TOP-Default-Laptop-old-v1 | 2 +- config/waybar/configs/TOP-Default-Laptop-old-v2 | 2 +- config/waybar/configs/TOP-Default-Laptop-old-v3 | 2 +- config/waybar/configs/TOP-Default-Laptop-old-v4 | 2 +- config/waybar/configs/TOP-Default-Laptop-old-v5 | 2 +- config/waybar/configs/TOP-Default-old-v1 | 2 +- config/waybar/configs/TOP-Default-old-v2 | 2 +- config/waybar/configs/TOP-Default-old-v3 | 2 +- config/waybar/configs/TOP-Default-old-v4 | 2 +- config/waybar/configs/TOP-Everforest | 2 +- config/waybar/configs/TOP-Everforest-glass | 2 +- config/waybar/configs/TOP-Gardenia | 2 +- config/waybar/configs/TOP-Minimal-Long | 2 +- config/waybar/configs/TOP-Minimal-Short | 2 +- config/waybar/configs/TOP-Peony | 2 +- config/waybar/configs/TOP-Simple | 2 +- config/waybar/configs/TOP-Simpliest | 2 +- config/waybar/configs/TOP-Sleek | 2 +- config/waybar/configs/TOP-ddubs-simple-bar | 2 +- config/waybar/style/0-VERTICAL-Catpuccin-Mocha.css | 2 +- config/waybar/style/0-VERTICAL-Golden-Noir.css | 2 +- config/waybar/style/0-VERTICAL-Oglo-Chicklets.css | 2 +- config/waybar/style/Black-&-White-Monochrome.css | 2 +- config/waybar/style/Catppuccin-Frappe.css | 2 +- config/waybar/style/Catppuccin-Latte.css | 2 +- config/waybar/style/Catppuccin-Mocha.css | 2 +- config/waybar/style/Colored-Chroma-Glow.css | 2 +- config/waybar/style/Colored-Translucent.css | 2 +- config/waybar/style/Colorful-Aurora-Blossom.css | 2 +- config/waybar/style/Colorful-Aurora.css | 2 +- config/waybar/style/Colorful-Oglo-Chicklets.css | 2 +- config/waybar/style/Colorful-Rainbow-Spectrum.css | 2 +- config/waybar/style/Colorful-stolen-style.css | 2 +- config/waybar/style/Dark-Golden-Eclipse.css | 2 +- config/waybar/style/Dark-Golden-Noir.css | 2 +- config/waybar/style/Dark-Half-Moon.css | 2 +- .../style/Dark-Latte-Wallust-combined-v2.css | 2 +- .../waybar/style/Dark-Latte-Wallust-combined.css | 2 +- config/waybar/style/Dark-Purpl.css | 2 +- config/waybar/style/Dark-Wallust-Obsidian-Edge.css | 2 +- config/waybar/style/Extra-Arrow.css | 2 +- config/waybar/style/Extra-Crimson.css | 2 +- config/waybar/style/Extra-EverForest.css | 2 +- config/waybar/style/Extra-ML4W-starter.css | 2 +- config/waybar/style/Extra-Mauve.css | 2 +- .../style/Extra-Modern-Combined-Transparent.css | 2 +- config/waybar/style/Extra-Modern-Combined.css | 2 +- config/waybar/style/Extra-Neon-Circuit.css | 2 +- config/waybar/style/Extra-Prismatic-Glow.css | 2 +- config/waybar/style/Extra-Rose-Pine.css | 2 +- config/waybar/style/Extra-Simple-Pink.css | 2 +- config/waybar/style/Light-Monochrome-Contrast.css | 2 +- config/waybar/style/Light-Obsidian-Glow.css | 2 +- config/waybar/style/Rainbow-RGB-Bordered.css | 2 +- config/waybar/style/Retro-Simple-Style.css | 2 +- config/waybar/style/Transparent-Crystal-Clear.css | 2 +- config/waybar/style/VERTICAL-Catpuccin-Mocha.css | 2 +- .../style/Wallust-Bordered-Chroma-Fusion-Edge.css | 2 +- .../style/Wallust-Bordered-Chroma-Simple.css | 2 +- config/waybar/style/Wallust-Box-type.css | 2 +- config/waybar/style/Wallust-Chroma-Edge.css | 2 +- config/waybar/style/Wallust-Chroma-Fusion.css | 2 +- config/waybar/style/Wallust-Chroma-Tally-V2.css | 2 +- config/waybar/style/Wallust-Chroma-Tally.css | 2 +- config/waybar/style/Wallust-Colored.css | 2 +- config/waybar/style/Wallust-ML4W-modern-mixed.css | 2 +- config/waybar/style/Wallust-ML4W-modern.css | 2 +- config/waybar/style/Wallust-Simple.css | 2 +- .../style/Wallust-Transparent-Crystal-Clear.css | 2 +- config/waybar/wallust/colors-waybar.css | 2 +- config/wlogout/style.css | 2 +- copy.sh | 6 +- i18n/CONTRIBUTING/CONTRIBUTING.es.md | 20 +++---- i18n/CONTRIBUTING/CONTRIBUTING.fr.md | 22 ++++---- i18n/README/README.de.md | 62 ++++++++++----------- i18n/README/README.fr.md | 64 +++++++++++----------- i18n/README/README.jp.md | 60 ++++++++++---------- i18n/README/README.ro.md | 62 ++++++++++----------- i18n/README/README.ru.md | 62 ++++++++++----------- i18n/README/README.ua.md | 62 ++++++++++----------- 284 files changed, 557 insertions(+), 564 deletions(-) (limited to 'config/hypr/scripts') diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 745e6489..f288ab49 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,4 +1,3 @@ # These are supported funding model platforms -github: JaKooLit -ko_fi: jakoolit +github: LinuxBeginnings diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index a8c9143d..15af6010 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -3,7 +3,7 @@ description: Something is not working right title: "[Bug]: " labels: ["bug"] assignees: - - JaKooLit + - LinuxBeginnings body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/documentation-update.yml b/.github/ISSUE_TEMPLATE/documentation-update.yml index 3e3e8c22..57df6bab 100644 --- a/.github/ISSUE_TEMPLATE/documentation-update.yml +++ b/.github/ISSUE_TEMPLATE/documentation-update.yml @@ -3,7 +3,7 @@ description: Propose a change to the project documentation wiki title: "[Documentation update]: " labels: ["documentation_update"] assignees: - - JaKooLit + - LinuxBeginnings body: - type: textarea diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 6143d176..343ca195 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -3,7 +3,7 @@ description: I'd like to propose some changes and enhancements title: "[Enhancement]: " labels: ["enhancement"] assignees: - - JaKooLit + - LinuxBeginnings body: - type: checkboxes diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 42811c53..96006894 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -25,9 +25,9 @@ Please put an `x` in the boxes that apply: Please put an `x` in the boxes that apply: -- [ ] I have read the [CONTRIBUTING](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) document. +- [ ] I have read the [CONTRIBUTING](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) document. - [ ] My code follows the code style of this project. -- [ ] My commit message follows the [commit guidelines](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md#git-commit-messages). +- [ ] My commit message follows the [commit guidelines](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md#git-commit-messages). - [ ] My change requires a change to the documentation. - [ ] I want to add something in Hyprland-Dots wiki. - [ ] I have added tests to cover my changes. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6e665a..c7ff952e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -229,7 +229,7 @@ - Fixed: Not all waybars had `custom/nightlight` - Fixed: `Weather.py` cache wasn't updating when UNITS changed from C to F - Fixed: Wallpapers with periods in names truncated - - https://github.com/JaKooLit/Hyprland-Dots/pull/873 + - https://github.com/LinuxBeginnings/Hyprland-Dots/pull/873 - Thanks to @godlyfast for the fix. - Fixed: Overview Toggle keyind SUPER + A now properly detects QuickShell - If QS `overview` fails, or is not installed, AGS `overview` will be started instead @@ -250,7 +250,7 @@ - GameMode.sh / Refresh.sh - Enabling / Disabling repeatedly would result in multiple waybars - Added additional `sleep` commands in `GameMode.sh` and `Refresh.sh` - - Resolves [Issue 870](https://github.com/JaKooLit/Hyprland-Dots/issues/870) + - Resolves [Issue 870](https://github.com/LinuxBeginnings/Hyprland-Dots/issues/870) ## CHANGES: @@ -370,5 +370,5 @@ Key Changes: - [SVIGHNESH](https://github.com/SVIGHNESH) If you have any questions, feel free to contact via -[GitHub Discussions](https://github.com/JaKooLit/Hyprland-Dots/discussions) or +[GitHub Discussions](https://github.com/LinuxBeginnings/Hyprland-Dots/discussions) or [Through Discord Server](https://discord.gg/kool-tech-world) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 108df910..9c436f68 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Thank you for your interest in contributing to KooL Hyprland Projects! We welcom ## Getting Started 1. Fork the branch development repository to your GitHub account. This will create a copy of this repository in your account. You can make changes to this copy without affecting the original repository. - - For fork this repository, click the **Fork** button in the top right corner of this page or click [here](https://github.com/JaKooLit/Hyprland-Dots/fork). + - For fork this repository, click the **Fork** button in the top right corner of this page or click [here](https://github.com/LinuxBeginnings/Hyprland-Dots/fork). - Make sure to uncheck the Copy the `main` branch only. This will copy the development branch and other branches (if any) 2. Clone your forked repository to your local machine. @@ -13,7 +13,7 @@ Thank you for your interest in contributing to KooL Hyprland Projects! We welcom - Use the following command to clone your forked repository to your local machine. ```bash - git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git + git clone --depth=1 -b development https://github.com/LinuxBeginnings/Hyprland-Dots.git ``` 3. Create a new branch for your changes. @@ -26,7 +26,7 @@ Thank you for your interest in contributing to KooL Hyprland Projects! We welcom 4. Make your changes and commit them with a descriptive commit message. - - For example, to commit your changes, use the following command and make sure to follow the [commit message guidelines](https://github.com/JaKooLit/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md). + - For example, to commit your changes, use the following command and make sure to follow the [commit message guidelines](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md). ```bash git commit -m "feat: add a new feature" @@ -45,7 +45,7 @@ Thank you for your interest in contributing to KooL Hyprland Projects! We welcom 1. Go to your forked repository. 2. Click the **Compare & pull request** button next to your `your-branch-name` branch. 3. Add a title and description for your pull request. - 4. Click **Create pull request** and remember to add the relevant labels with using the [pull request template](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). + 4. Click **Create pull request** and remember to add the relevant labels with using the [pull request template](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). ## Guidelines @@ -55,15 +55,15 @@ Thank you for your interest in contributing to KooL Hyprland Projects! We welcom - Make sure all tests pass or fully tested before submitting your changes. - Keep your pull request focused and avoid including unrelated changes. - Remember to follow the following files before submitting your changes. - - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) - Use this template to create a report to help us improve. - - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) - Use this template to suggest a feature for this project. - - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) - Use this template to propose a change to the documentation. - - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) - Use this template to submit a pull request. - - [COMMIT_MESSAGE_GUIDELINES.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md) - Read this file to learn about the commit message guidelines. - - [CONTRIBUTING.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) - Read this file to learn about the contributing guidelines. - - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) - Read this file to learn about the license. - - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) - Read this file to learn about the project. + - [bug.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) - Use this template to create a report to help us improve. + - [feature.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) - Use this template to suggest a feature for this project. + - [documentation-update.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) - Use this template to propose a change to the documentation. + - [PULL_REQUEST_TEMPLATE.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) - Use this template to submit a pull request. + - [COMMIT_MESSAGE_GUIDELINES.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md) - Read this file to learn about the commit message guidelines. + - [CONTRIBUTING.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) - Read this file to learn about the contributing guidelines. + - [LICENSE](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/LICENSE.md) - Read this file to learn about the license. + - [README.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/README.md) - Read this file to learn about the project. ## Contact -If you have any questions, feel free to contact via [GitHub Discussions](https://github.com/JaKooLit/Hyprland-Dots/discussions) or [Through Discord Server](https://discord.gg/kool-tech-world) +If you have any questions, feel free to contact via [GitHub Discussions](https://github.com/LinuxBeginnings/Hyprland-Dots/discussions) or [Through Discord Server](https://discord.gg/kool-tech-world) diff --git a/Distro-Hyprland.sh b/Distro-Hyprland.sh index 88964ea7..9954947d 100755 --- a/Distro-Hyprland.sh +++ b/Distro-Hyprland.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# https://github.com/JaKooLit +# https://github.com/LinuxBeginnings # Script design to clone the Distro-Hyprland install scripts @@ -35,7 +35,7 @@ if [ "$distro_name" = "Debian GNU/Linux" ]; then INSTALL_CMD="sudo apt install -y" GIT_INSTALL_CMD="sudo apt install -y git" Distro="Debian-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif [ "$distro_name" = "Ubuntu" ]; then PACKAGE_MANAGER="apt" @@ -45,35 +45,35 @@ elif [ "$distro_name" = "Ubuntu" ]; then case "$distro_version" in "24.04") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="24.04" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 24.04 detected. Customizing setup for Ubuntu 24.04." ;; "24.10") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="24.10" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 24.10 detected. Customizing setup for Ubuntu 24.10." ;; "25.04") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="25.04" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 25.04 detected. Customizing setup for Ubuntu 25.04." ;; "25.10") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="25.10" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 25.10 detected. Customizing setup for Ubuntu 25.10." ;; "26.04-development") Distro="Ubuntu-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Github_URL_branch="26.04-development" Distro_DIR="$HOME/$Distro-$Github_URL_branch" echo "${INFO} Ubuntu 26.04 (development) detected. Customizing setup for Ubuntu 26.04 development branch." @@ -90,28 +90,28 @@ elif command -v pacman &> /dev/null; then INSTALL_CMD="sudo pacman -S --noconfirm" GIT_INSTALL_CMD="sudo pacman -S git --noconfirm" Distro="Arch-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif command -v dnf &> /dev/null; then PACKAGE_MANAGER="dnf" INSTALL_CMD="sudo dnf install -y" GIT_INSTALL_CMD="sudo dnf install -y git" Distro="Fedora-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif command -v zypper &> /dev/null; then PACKAGE_MANAGER="zypper" INSTALL_CMD="sudo zypper install -y" GIT_INSTALL_CMD="sudo zypper install -y git" Distro="OpenSUSE-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" elif [ "$distro_name" = "NixOS" ]; then PACKAGE_MANAGER="nix" INSTALL_CMD="nix-shell" GIT_INSTALL_CMD="nix-shell -p git curl pciutils" Distro="NixOS-Hyprland" - Github_URL="https://github.com/JaKooLit/$Distro.git" + Github_URL="https://github.com/LinuxBeginnings/$Distro.git" Distro_DIR="$HOME/$Distro" else echo "${ERROR} Unsupported distribution: $distro_name. Exiting." diff --git a/README.md b/README.md index 268b7ad4..d01edfc5 100644 --- a/README.md +++ b/README.md @@ -10,30 +10,29 @@

- +


-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles KooL's Hyprland Dotfiles Showcase - Sparkles + Sparkles

@@ -60,7 +59,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - NOTE: you need package `curl` for this to work ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - You can use the above command to automatically clone the `Distro-Hyprland` install scripts @@ -70,20 +69,20 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - Automated Hyprland Scripts for Distro of choice which will pull this dotfiles if opted to install these configurations -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) -- [Fedora-Linux (43/Rawhide)](https://github.com/JaKooLit/Fedora-Hyprland) +- [Fedora-Linux (43/Rawhide)](https://github.com/LinuxBeginnings/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) -- [NixOS (25.05+)](https://github.com/JaKooLit/NixOS-Hyprland) +- [NixOS (25.05+)](https://github.com/LinuxBeginnings/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10 (depreciated)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 (depreciated)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) -- [Ubuntu 25.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.10) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10 (depreciated)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 (depreciated)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) +- [Ubuntu 25.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.10) --- @@ -95,18 +94,18 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👀 Screenshots 👀 -- All screenshots are collected here [Screenshots](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- All screenshots are collected here [Screenshots](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Whats new? -- To easily track changes, I will be updating the [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) Screenshots will be included if worth mentioning the changes! +- To easily track changes, I will be updating the [CHANGELOGS](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs) Screenshots will be included if worth mentioning the changes! > [!NOTE] > Kindly note that by default, Kools Dots are adjusted / configured for 2k (1440p) display without scaling. ### 💥 Copying / Installation / Update instructions 💥 -- [`MORE INFO HERE`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`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. @@ -121,7 +120,7 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > Note: Ubuntu is exception, it has version specific branches ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` @@ -129,7 +128,7 @@ cd Hyprland-Dots > Not recommeded for non-testing systems ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -176,7 +175,7 @@ chmod +x upgrade.sh #### 🛎️ a small note on wallpapers -- by default, only few wallpapers will be copied (1 each dark and light plus 3 more). You will be offered to download more wallpapers. You can preview/check the additional wallpapers from [`THIS`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) Link +- by default, only few wallpapers will be copied (1 each dark and light plus 3 more). You will be offered to download more wallpapers. You can preview/check the additional wallpapers from [`THIS`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) Link #### ⚠️⚠️⚠️ A MUST! after copying / Installing these dots @@ -185,24 +184,24 @@ chmod +x upgrade.sh - Nvidia Owners. Make sure to edit your `~/.config/hypr/UserConfigs/ENVariables.conf` (highly recommended). -* NVIDIA users / owners, after installation, check [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) +* NVIDIA users / owners, after installation, check [`THIS`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) - If you have already set your own keybinds, monitors, etc.... Just copy over from backup created before log-out or reboot. (recommended) #### 📖 Known issues and possible solutions -- check out this page [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) and [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- check out this page [FAQ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) and [UNSOLVED ISSUES](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 QUESTIONS ?!?! ⁉️ - FAQ! Yes you can use these dotfiles to other distro! Just ensure to install proper packages first! If it makes you feel better, I use same config on my Gentoo:) - QUICK HINT! Click the HINT! Waybar module (note only available in Waybar default and Simple-L [TOP] layout). Can be launched by Keybind `SUPER H` -- More question? click here browse through this [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- If you want the old configs, it is collected on my "Archive" repo. See [HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- More question? click here browse through this [WIKI](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) +- If you want the old configs, it is collected on my "Archive" repo. See [HERE](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Keybinds -- Keybinds [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Keybinds [`CLICK`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Special request @@ -211,7 +210,7 @@ chmod +x upgrade.sh #### ✍️ Contributing -- Want to contribute? Click [`HERE`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) for a guide how to contribute +- 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 #### 🤷‍♂️ TO DO! @@ -230,25 +229,20 @@ chmod +x upgrade.sh - you can also give support through coffee's or btc 😊 -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/jakoolit) or -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) -Or you can donate cryto on my btc wallet :) > 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i -![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) ## 🫰 Thank you for the stars 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) ### 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) -- French: [Code de Conduite](./i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md) · [Directives pour les messages de commit](./i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md) · [Guide de contribution](./i18n/CONTRIBUTING/CONTRIBUTING.fr.md) \ No newline at end of file +- French: [Code de Conduite](./i18n/CODE_OF_CONDUCT/CODE_OF_CONDUCT.fr.md) · [Directives pour les messages de commit](./i18n/COMMIT_MESSAGE_GUIDELINES/COMMIT_MESSAGE_GUIDELINES.fr.md) · [Guide de contribution](./i18n/CONTRIBUTING/CONTRIBUTING.fr.md) diff --git a/archive/release.sh b/archive/release.sh index e29eaa79..78df3444 100755 --- a/archive/release.sh +++ b/archive/release.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # For downloading dots from releases # Set some colors for output messages @@ -78,7 +78,7 @@ if [ -f Hyprland-Dots.tar.gz ]; then existing_version=$(echo Hyprland-Dots.tar.gz | grep -oP 'v\d+\.\d+\.\d+' | sed 's/v//') # Fetch the tag_name for the latest release using the GitHub API - latest_version=$(curl -s https://api.github.com/repos/JaKooLit/Hyprland-Dots/releases/latest | grep "tag_name" | cut -d '"' -f 4 | sed 's/v//') + latest_version=$(curl -s https://api.github.com/repos/LinuxBeginnings/Hyprland-Dots/releases/latest | grep "tag_name" | cut -d '"' -f 4 | sed 's/v//') # Check if versions match if [ "$existing_version" = "$latest_version" ]; then @@ -94,8 +94,8 @@ if [ -f Hyprland-Dots.tar.gz ]; then if [ "$upgrade_choice" = "y" ]; then echo -e "${NOTE} Proceeding to download the latest release." - # Delete existing directories starting with JaKooLit-Hyprland-Dots - find . -type d -name 'JaKooLit-Hyprland-Dots*' -exec rm -rf {} + + # Delete existing directories starting with LinuxBeginnings-Hyprland-Dots + find . -type d -name 'LinuxBeginnings-Hyprland-Dots*' -exec rm -rf {} + rm -f Hyprland-Dots.tar.gz printf "${WARN} Removed existing Hyprland-Dots.tar.gz.\n" else @@ -108,7 +108,7 @@ fi printf "${NOTE} Downloading the latest Hyprland source code release...\n" # Fetch the tag name for the latest release using the GitHub API -latest_tag=$(curl -s https://api.github.com/repos/JaKooLit/Hyprland-Dots/releases/latest | grep "tag_name" | cut -d '"' -f 4) +latest_tag=$(curl -s https://api.github.com/repos/LinuxBeginnings/Hyprland-Dots/releases/latest | grep "tag_name" | cut -d '"' -f 4) # Check if the tag is obtained successfully if [ -z "$latest_tag" ]; then @@ -117,7 +117,7 @@ if [ -z "$latest_tag" ]; then fi # Fetch the tarball URL for the latest release using the GitHub API -latest_tarball_url=$(curl -s https://api.github.com/repos/JaKooLit/Hyprland-Dots/releases/latest | grep "tarball_url" | cut -d '"' -f 4) +latest_tarball_url=$(curl -s https://api.github.com/repos/LinuxBeginnings/Hyprland-Dots/releases/latest | grep "tarball_url" | cut -d '"' -f 4) # Check if the URL is obtained successfully if [ -z "$latest_tarball_url" ]; then @@ -134,15 +134,15 @@ if curl -L "$latest_tarball_url" -o "$file_name"; then tar -xzf "$file_name" || exit 1 # delete existing Hyprland-Dots - rm -rf JaKooLit-Hyprland-Dots + rm -rf LinuxBeginnings-Hyprland-Dots # Identify the extracted directory extracted_directory=$(tar -tf "$file_name" | grep -o '^[^/]\+' | uniq) - # Rename the extracted directory to JaKooLit-Hyprland-Dots - mv "$extracted_directory" JaKooLit-Hyprland-Dots || exit 1 + # Rename the extracted directory to LinuxBeginnings-Hyprland-Dots + mv "$extracted_directory" LinuxBeginnings-Hyprland-Dots || exit 1 - cd "JaKooLit-Hyprland-Dots" || exit 1 + cd "LinuxBeginnings-Hyprland-Dots" || exit 1 # Set execute permission for copy.sh and execute it chmod +x copy.sh diff --git a/archive/upgrade.sh b/archive/upgrade.sh index 45624c4f..63375762 100755 --- a/archive/upgrade.sh +++ b/archive/upgrade.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # for Semi-Manual upgrading your system. # NOTE: requires rsync diff --git a/config/cava/config b/config/cava/config index 31401d64..bf2a35e6 100644 --- a/config/cava/config +++ b/config/cava/config @@ -1,4 +1,4 @@ -# /* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ # +# /* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ # ## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting. diff --git a/config/fastfetch/config-compact.jsonc b/config/fastfetch/config-compact.jsonc index 358efcc5..156cb6df 100644 --- a/config/fastfetch/config-compact.jsonc +++ b/config/fastfetch/config-compact.jsonc @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", diff --git a/config/fastfetch/config-pokemon.jsonc b/config/fastfetch/config-pokemon.jsonc index 63f60378..862a7da3 100644 --- a/config/fastfetch/config-pokemon.jsonc +++ b/config/fastfetch/config-pokemon.jsonc @@ -30,7 +30,7 @@ "type": "command", "key": " ", "keyColor": "blue", - "text": "echo JaKooLit Version: ${DOTS_VERSION}" + "text": "echo LinuxBeginnings Version: ${DOTS_VERSION}" }, { "type": "wm", diff --git a/config/fastfetch/config-v2.jsonc b/config/fastfetch/config-v2.jsonc index 163ca67b..fee977ec 100644 --- a/config/fastfetch/config-v2.jsonc +++ b/config/fastfetch/config-v2.jsonc @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", @@ -30,7 +30,7 @@ { "type": "command", "key": " ├  ", - "format": "echo JaKooLit Version: ${DOTS_VERSION}", + "format": "echo LinuxBeginnings Version: ${DOTS_VERSION}", "keyColor": "31" }, { diff --git a/config/fastfetch/config.legacy.jsonc b/config/fastfetch/config.legacy.jsonc index 8b2de09f..a3fa54e5 100644 --- a/config/fastfetch/config.legacy.jsonc +++ b/config/fastfetch/config.legacy.jsonc @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", @@ -26,7 +26,7 @@ { "type": "command", "key": "│ ├", - "text": "echo JaKooLit Version: ${DOTS_VERSION}", + "text": "echo LinuxBeginnings Version: ${DOTS_VERSION}", "keyColor": "yellow" }, { diff --git a/config/hypr/Monitor_Profiles/default.conf b/config/hypr/Monitor_Profiles/default.conf index a96cac7d..7e198f7f 100644 --- a/config/hypr/Monitor_Profiles/default.conf +++ b/config/hypr/Monitor_Profiles/default.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # default Monitor config # Monitor Configuration diff --git a/config/hypr/UserConfigs/00-Readme b/config/hypr/UserConfigs/00-Readme index e989d2bb..b39873b1 100644 --- a/config/hypr/UserConfigs/00-Readme +++ b/config/hypr/UserConfigs/00-Readme @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # KooL's Hyprland-Dots diff --git a/config/hypr/UserConfigs/01-UserDefaults.conf b/config/hypr/UserConfigs/01-UserDefaults.conf index ae510f82..7a91336f 100644 --- a/config/hypr/UserConfigs/01-UserDefaults.conf +++ b/config/hypr/UserConfigs/01-UserDefaults.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # This is a file where you put your own default apps, default search Engine etc diff --git a/config/hypr/UserConfigs/ENVariables.conf b/config/hypr/UserConfigs/ENVariables.conf index 41d9b2d4..67861b86 100644 --- a/config/hypr/UserConfigs/ENVariables.conf +++ b/config/hypr/UserConfigs/ENVariables.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Environment variables. See https://wiki.hyprland.org/Configuring/Environment-variables/ # Set your defaults editor through ENV in ~/.config/hypr/UserConfigs/01-UserDefaults.conf diff --git a/config/hypr/UserConfigs/Laptops.conf b/config/hypr/UserConfigs/Laptops.conf index af5cb583..463f0b46 100644 --- a/config/hypr/UserConfigs/Laptops.conf +++ b/config/hypr/UserConfigs/Laptops.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # See https://wiki.hyprland.org/Configuring/Keywords/ for more variable settings # These configs are mostly for laptops. This is addemdum to Keybinds.conf diff --git a/config/hypr/UserConfigs/Startup_Apps.conf b/config/hypr/UserConfigs/Startup_Apps.conf index f00acf90..f87bbe15 100644 --- a/config/hypr/UserConfigs/Startup_Apps.conf +++ b/config/hypr/UserConfigs/Startup_Apps.conf @@ -1,3 +1,3 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Commands and Apps to be executed at launch diff --git a/config/hypr/UserConfigs/UserAnimations.conf b/config/hypr/UserConfigs/UserAnimations.conf index 0f40b5e6..f2d33d93 100644 --- a/config/hypr/UserConfigs/UserAnimations.conf +++ b/config/hypr/UserConfigs/UserAnimations.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # animations { enabled = yes diff --git a/config/hypr/UserConfigs/UserDecorations.conf b/config/hypr/UserConfigs/UserDecorations.conf index f203fe5b..eaccff80 100644 --- a/config/hypr/UserConfigs/UserDecorations.conf +++ b/config/hypr/UserConfigs/UserDecorations.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Decoration Settings # Hyprland Wiki Links diff --git a/config/hypr/UserConfigs/UserKeybinds.conf b/config/hypr/UserConfigs/UserKeybinds.conf index e140cfe4..82a7e568 100644 --- a/config/hypr/UserConfigs/UserKeybinds.conf +++ b/config/hypr/UserConfigs/UserKeybinds.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # This is where you put your own keybinds. Be Mindful to check as well ~/.config/hypr/configs/Keybinds.conf to avoid conflict # if you think I should replace the Pre-defined Keybinds in ~/.config/hypr/configs/Keybinds.conf , submit an issue or let me know in DC and present me a valid reason as to why, such as conflicting with global shortcuts, etc etc diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index df68b396..9bd9131d 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # User Settings # This is where you put your own settings as this will not be touched during update # if the upgrade.sh is used. diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 859dde91..79fbc24e 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # For window rules and layerrules # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more diff --git a/config/hypr/UserConfigs/WorkSpaceRules.conf b/config/hypr/UserConfigs/WorkSpaceRules.conf index aa86b35c..78d61389 100644 --- a/config/hypr/UserConfigs/WorkSpaceRules.conf +++ b/config/hypr/UserConfigs/WorkSpaceRules.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # NOTE: THIS IS NOT BEING SOURCED by hyprland # It is only here as a guide if you want to do it manually diff --git a/config/hypr/UserScripts/00-Readme b/config/hypr/UserScripts/00-Readme index 091bac85..54d7fff2 100755 --- a/config/hypr/UserScripts/00-Readme +++ b/config/hypr/UserScripts/00-Readme @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Place your new scripts here. # If you need to edit a script from main script (~/.config/hypr/scripts), copy it on this directory, and edit. diff --git a/config/hypr/UserScripts/RainbowBorders.bak.sh b/config/hypr/UserScripts/RainbowBorders.bak.sh index 67269b8a..49de9ea7 100755 --- a/config/hypr/UserScripts/RainbowBorders.bak.sh +++ b/config/hypr/UserScripts/RainbowBorders.bak.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Smooth border cycling effect using Wallust palette or full rainbow # Possible values: "wallust_random", "rainbow", "gradient_flow" diff --git a/config/hypr/UserScripts/RofiBeats.sh b/config/hypr/UserScripts/RofiBeats.sh index a002a518..64e8ee99 100755 --- a/config/hypr/UserScripts/RofiBeats.sh +++ b/config/hypr/UserScripts/RofiBeats.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # RofiBeats - unified, dynamic UI (add, remove, manage, play) mDIR="$HOME/Music/" diff --git a/config/hypr/UserScripts/RofiCalc.sh b/config/hypr/UserScripts/RofiCalc.sh index b72d5f3e..116fc6cc 100755 --- a/config/hypr/UserScripts/RofiCalc.sh +++ b/config/hypr/UserScripts/RofiCalc.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # /* Calculator (using qalculate) and rofi */ # /* Submitted by: https://github.com/JosephArmas */ diff --git a/config/hypr/UserScripts/WallpaperAutoChange.sh b/config/hypr/UserScripts/WallpaperAutoChange.sh index 6d8e8735..9643c7e9 100755 --- a/config/hypr/UserScripts/WallpaperAutoChange.sh +++ b/config/hypr/UserScripts/WallpaperAutoChange.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # source https://wiki.archlinux.org/title/Hyprland#Using_a_script_to_change_wallpaper_every_X_minutes # This script will randomly go through the files of a directory, setting it diff --git a/config/hypr/UserScripts/WallpaperEffects.sh b/config/hypr/UserScripts/WallpaperEffects.sh index 475969d6..caca56e1 100755 --- a/config/hypr/UserScripts/WallpaperEffects.sh +++ b/config/hypr/UserScripts/WallpaperEffects.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Wallpaper Effects using ImageMagick (SUPER SHIFT W) # Variables diff --git a/config/hypr/UserScripts/WallpaperRandom.sh b/config/hypr/UserScripts/WallpaperRandom.sh index 8dd680d5..a9908e19 100755 --- a/config/hypr/UserScripts/WallpaperRandom.sh +++ b/config/hypr/UserScripts/WallpaperRandom.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for Random Wallpaper ( CTRL ALT W) PICTURES_DIR="$(xdg-user-dir PICTURES 2>/dev/null || echo "$HOME/Pictures")" diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh index 316a7cd4..ed0b2846 100755 --- a/config/hypr/UserScripts/WallpaperSelect.sh +++ b/config/hypr/UserScripts/WallpaperSelect.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # This script for selecting wallpapers (SUPER W) # WALLPAPERS PATH diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index 6061f696..e7a0fe01 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Rewritten to use Open-Meteo APIs (worldwide, no API key) for robust weather data. # Outputs Waybar-compatible JSON and a simple text cache. diff --git a/config/hypr/UserScripts/Weather.sh b/config/hypr/UserScripts/Weather.sh index 4588ed1d..c01a4e12 100755 --- a/config/hypr/UserScripts/Weather.sh +++ b/config/hypr/UserScripts/Weather.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # weather info from wttr. https://github.com/chubin/wttr.in # Remember to add city # Function to get current city from IP address with fallback diff --git a/config/hypr/UserScripts/WeatherWrap.sh b/config/hypr/UserScripts/WeatherWrap.sh index 5b266930..5e8b4733 100755 --- a/config/hypr/UserScripts/WeatherWrap.sh +++ b/config/hypr/UserScripts/WeatherWrap.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Weather entrypoint: prefer Python (Open‑Meteo), fallback to legacy Bash (wttr.in) SCRIPT_DIR="$(dirname "$0")" diff --git a/config/hypr/UserScripts/ZshChangeTheme.sh b/config/hypr/UserScripts/ZshChangeTheme.sh index 690f0f13..3e2f077a 100755 --- a/config/hypr/UserScripts/ZshChangeTheme.sh +++ b/config/hypr/UserScripts/ZshChangeTheme.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for Oh my ZSH theme ( CTRL SHIFT O) # preview of theme can be view here: https://github.com/ohmyzsh/ohmyzsh/wiki/Themes diff --git a/config/hypr/animations/00-default.conf b/config/hypr/animations/00-default.conf index 0f40b5e6..f2d33d93 100644 --- a/config/hypr/animations/00-default.conf +++ b/config/hypr/animations/00-default.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # animations { enabled = yes diff --git a/config/hypr/animations/01-default - v2.conf b/config/hypr/animations/01-default - v2.conf index dfbbed7f..7ba66b79 100644 --- a/config/hypr/animations/01-default - v2.conf +++ b/config/hypr/animations/01-default - v2.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # old animations diff --git a/config/hypr/animations/03- Disable Animation.conf b/config/hypr/animations/03- Disable Animation.conf index f73a485b..a2013570 100644 --- a/config/hypr/animations/03- Disable Animation.conf +++ b/config/hypr/animations/03- Disable Animation.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # animations { enabled = no diff --git a/config/hypr/animations/END-4.conf b/config/hypr/animations/END-4.conf index 0ab8d1af..394a0a1a 100644 --- a/config/hypr/animations/END-4.conf +++ b/config/hypr/animations/END-4.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "End-4" # credit https://github.com/end-4/dots-hyprland diff --git a/config/hypr/animations/HYDE - Vertical.conf b/config/hypr/animations/HYDE - Vertical.conf index ccceccf4..6f0a0669 100644 --- a/config/hypr/animations/HYDE - Vertical.conf +++ b/config/hypr/animations/HYDE - Vertical.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Vertical" # credit https://github.com/prasanthrangan/hyprdots diff --git a/config/hypr/animations/HYDE - default.conf b/config/hypr/animations/HYDE - default.conf index 96c439d6..981414fd 100644 --- a/config/hypr/animations/HYDE - default.conf +++ b/config/hypr/animations/HYDE - default.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Default" # credit https://github.com/prasanthrangan/hyprdots diff --git a/config/hypr/animations/HYDE - minimal-1.conf b/config/hypr/animations/HYDE - minimal-1.conf index 6dbcf8ec..909f7140 100644 --- a/config/hypr/animations/HYDE - minimal-1.conf +++ b/config/hypr/animations/HYDE - minimal-1.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # # name "Minimal-1" # credit https://github.com/prasanthrangan/hyprdots- diff --git a/config/hypr/animations/HYDE - minimal-2.conf b/config/hypr/animations/HYDE - minimal-2.conf index 6ac56bc5..241bec05 100644 --- a/config/hypr/animations/HYDE - minimal-2.conf +++ b/config/hypr/animations/HYDE - minimal-2.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # # name "Minimal-2" # credit https://github.com/prasanthrangan/hyprdots diff --git a/config/hypr/animations/HYDE - optimized.conf b/config/hypr/animations/HYDE - optimized.conf index 7534c69d..e325b635 100644 --- a/config/hypr/animations/HYDE - optimized.conf +++ b/config/hypr/animations/HYDE - optimized.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Optimized" # credit https://github.com/prasanthrangan/hyprdots diff --git a/config/hypr/animations/ML4W - classic.conf b/config/hypr/animations/ML4W - classic.conf index af8c5e15..7f697afd 100644 --- a/config/hypr/animations/ML4W - classic.conf +++ b/config/hypr/animations/ML4W - classic.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Classic" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/ML4W - dynamic.conf b/config/hypr/animations/ML4W - dynamic.conf index c5f1da0d..7c98675d 100644 --- a/config/hypr/animations/ML4W - dynamic.conf +++ b/config/hypr/animations/ML4W - dynamic.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Dynamic" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/ML4W - fast.conf b/config/hypr/animations/ML4W - fast.conf index 9623c418..ce586478 100644 --- a/config/hypr/animations/ML4W - fast.conf +++ b/config/hypr/animations/ML4W - fast.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Fast" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/ML4W - high.conf b/config/hypr/animations/ML4W - high.conf index e881d8be..bc38fc66 100644 --- a/config/hypr/animations/ML4W - high.conf +++ b/config/hypr/animations/ML4W - high.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "High" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/ML4W - moving.conf b/config/hypr/animations/ML4W - moving.conf index 974a8f60..deb6ad32 100644 --- a/config/hypr/animations/ML4W - moving.conf +++ b/config/hypr/animations/ML4W - moving.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Moving" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/ML4W - standard.conf b/config/hypr/animations/ML4W - standard.conf index aa312bb1..7a18c604 100644 --- a/config/hypr/animations/ML4W - standard.conf +++ b/config/hypr/animations/ML4W - standard.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Standard" # credit https://github.com/mylinuxforwork/dotfiles diff --git a/config/hypr/animations/Mahaveer - me-1.conf b/config/hypr/animations/Mahaveer - me-1.conf index 7c93f3ef..8db554b0 100644 --- a/config/hypr/animations/Mahaveer - me-1.conf +++ b/config/hypr/animations/Mahaveer - me-1.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Me-1" # credit https://github.com/mahaveergurjar diff --git a/config/hypr/animations/Mahaveer - me-2.conf b/config/hypr/animations/Mahaveer - me-2.conf index 4cc2bfa0..3d9b35ae 100644 --- a/config/hypr/animations/Mahaveer - me-2.conf +++ b/config/hypr/animations/Mahaveer - me-2.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # # name "Me-2" # credit https://github.com/mahaveergurjar diff --git a/config/hypr/application-style.conf b/config/hypr/application-style.conf index 7e67f106..2e5fa4e8 100644 --- a/config/hypr/application-style.conf +++ b/config/hypr/application-style.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # as per Hyprland wiki: hyprland-qt-support provides a QML style for hypr* qt6 apps roundess = 2 diff --git a/config/hypr/configs/ENVariables.conf b/config/hypr/configs/ENVariables.conf index ae7f3acf..585ae9f5 100644 --- a/config/hypr/configs/ENVariables.conf +++ b/config/hypr/configs/ENVariables.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Environment variables. See https://wiki.hyprland.org/Configuring/Environment-variables/ # Set your defaults editor through ENV in ~/.config/hypr/UserConfigs/01-UserDefaults.conf diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index abdc0114..ad7d31d9 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Default Keybinds # visit https://wiki.hyprland.org/Configuring/Binds/ for more info @@ -169,7 +169,7 @@ bindd = $mainMod CTRL, L, Move Right into group, moveintogroup, r # Move active bindd = $mainMod CTRL, H, Move active out of group, moveoutofgroup # Move active window out of group # Try to dynamically move in grouped window and when ungrouped -# Not working for me DW 11/26/25 PR: https://github.com/JaKooLit/Hyprland-Dots/pull/872 +# Not working for me DW 11/26/25 PR: https://github.com/LinuxBeginnings/Hyprland-Dots/pull/872 #bindd = $mainMod, right, focus right, exec, bash -c 'if hyprctl activewindow -j | jq -e "((.grouped | type) == \"boolean\") or (.address == (.grouped[-1] // empty))" >/dev/null 2>&1; then hyprctl dispatch movefocus r; else hyprctl dispatch changegroupactive f; fi' #bindd = $mainMod, left, focus left, exec, bash -c 'if hyprctl activewindow -j | jq -e "((.grouped | type) == \"boolean\") or (.address == (.grouped[0] // empty))" >/dev/null 2>&1; then hyprctl dispatch movefocus l; else hyprctl dispatch changegroupactive b; fi' diff --git a/config/hypr/configs/Laptops.conf b/config/hypr/configs/Laptops.conf index d6addb1d..ec58fdd6 100644 --- a/config/hypr/configs/Laptops.conf +++ b/config/hypr/configs/Laptops.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # See https://wiki.hyprland.org/Configuring/Keywords/ for more variable settings # These configs are mostly for laptops. This is addemdum to Keybinds.conf diff --git a/config/hypr/configs/Startup_Apps.conf b/config/hypr/configs/Startup_Apps.conf index 0cc5da11..c0ca9c41 100644 --- a/config/hypr/configs/Startup_Apps.conf +++ b/config/hypr/configs/Startup_Apps.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Commands and Apps to be executed at launch (vendor defaults) $scriptsDir = $HOME/.config/hypr/scripts $UserScripts = $HOME/.config/hypr/UserScripts diff --git a/config/hypr/configs/SystemSettings.conf b/config/hypr/configs/SystemSettings.conf index f49960cd..d7892d17 100644 --- a/config/hypr/configs/SystemSettings.conf +++ b/config/hypr/configs/SystemSettings.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Default settings # This is where you put your own settings as this will not be touched during update # if the upgrade.sh is used. diff --git a/config/hypr/configs/WindowRules-pre-53.conf b/config/hypr/configs/WindowRules-pre-53.conf index 8a5f99c7..589a8acb 100644 --- a/config/hypr/configs/WindowRules-pre-53.conf +++ b/config/hypr/configs/WindowRules-pre-53.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/hypridle.conf b/config/hypr/hypridle.conf index 4b8cd7e2..fbf0b3ad 100644 --- a/config/hypr/hypridle.conf +++ b/config/hypr/hypridle.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Hypridle # Original config submitted by https://github.com/SherLock707 diff --git a/config/hypr/hyprland.conf b/config/hypr/hyprland.conf index 7119b3df..26701470 100644 --- a/config/hypr/hyprland.conf +++ b/config/hypr/hyprland.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Always refer to Hyprland wiki # https://wiki.hyprland.org/ diff --git a/config/hypr/hyprlock-1080p.conf b/config/hypr/hyprlock-1080p.conf index 4251ac68..f36df9e4 100644 --- a/config/hypr/hyprlock-1080p.conf +++ b/config/hypr/hyprlock-1080p.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Hyprlock config for < 1080p monitor resolutions # Original config submitted by https://github.com/SherLock707 @@ -170,7 +170,7 @@ label { # weather edit the scripts for locations # weather scripts are located in ~/.config/hypr/UserScripts Weather.sh and/or Weather.py -# see https://github.com/JaKooLit/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock +# see https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock label { monitor = text = cmd[update:3600000] [ -f "$HOME/.cache/.weather_cache" ] && cat "$HOME/.cache/.weather_cache" diff --git a/config/hypr/hyprlock-2k.conf b/config/hypr/hyprlock-2k.conf index f359357f..42d24d05 100644 --- a/config/hypr/hyprlock-2k.conf +++ b/config/hypr/hyprlock-2k.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Hyprlock config for => 2k monitor resolutions # Original config submitted by https://github.com/SherLock707 @@ -170,7 +170,7 @@ label { # weather edit the scripts for locations # weather scripts are located in ~/.config/hypr/UserScripts Weather.sh and/or Weather.py -# see https://github.com/JaKooLit/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock +# see https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock label { monitor = text = cmd[update:3600000] [ -f "$HOME/.cache/.weather_cache" ] && cat "$HOME/.cache/.weather_cache" diff --git a/config/hypr/hyprlock.conf b/config/hypr/hyprlock.conf index f359357f..42d24d05 100644 --- a/config/hypr/hyprlock.conf +++ b/config/hypr/hyprlock.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Hyprlock config for => 2k monitor resolutions # Original config submitted by https://github.com/SherLock707 @@ -170,7 +170,7 @@ label { # weather edit the scripts for locations # weather scripts are located in ~/.config/hypr/UserScripts Weather.sh and/or Weather.py -# see https://github.com/JaKooLit/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock +# see https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/TIPS#%EF%B8%8F-weather-app-related-for-waybar-and-hyprlock label { monitor = text = cmd[update:3600000] [ -f "$HOME/.cache/.weather_cache" ] && cat "$HOME/.cache/.weather_cache" diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh index eeabdef5..c68560ab 100755 --- a/config/hypr/initial-boot.sh +++ b/config/hypr/initial-boot.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # A bash script designed to run only once dotfiles installed # THIS SCRIPT CAN BE DELETED ONCE SUCCESSFULLY BOOTED!! And also, edit ~/.config/hypr/configs/Settings.conf diff --git a/config/hypr/monitors.conf b/config/hypr/monitors.conf index ed2bb30d..2f79d4fd 100644 --- a/config/hypr/monitors.conf +++ b/config/hypr/monitors.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # default Monitor config # *********************************************************** # diff --git a/config/hypr/scripts/AirplaneMode.sh b/config/hypr/scripts/AirplaneMode.sh index 548b9d6b..ba692f98 100755 --- a/config/hypr/scripts/AirplaneMode.sh +++ b/config/hypr/scripts/AirplaneMode.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Airplane Mode. Turning on or off all wifi using rfkill. notif="$HOME/.config/swaync/images/ja.png" diff --git a/config/hypr/scripts/Animations.sh b/config/hypr/scripts/Animations.sh index 4bbe050f..ff3a6e45 100755 --- a/config/hypr/scripts/Animations.sh +++ b/config/hypr/scripts/Animations.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For applying Animations from different users # Check if rofi is already running diff --git a/config/hypr/scripts/Brightness.sh b/config/hypr/scripts/Brightness.sh index ce443ef2..e0091417 100755 --- a/config/hypr/scripts/Brightness.sh +++ b/config/hypr/scripts/Brightness.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for Monitor backlights (if supported) using brightnessctl iDIR="$HOME/.config/swaync/icons" diff --git a/config/hypr/scripts/BrightnessKbd.sh b/config/hypr/scripts/BrightnessKbd.sh index 93e09d86..f9015fe0 100755 --- a/config/hypr/scripts/BrightnessKbd.sh +++ b/config/hypr/scripts/BrightnessKbd.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for keyboard backlights (if supported) using brightnessctl iDIR="$HOME/.config/swaync/icons" diff --git a/config/hypr/scripts/ChangeBlur.sh b/config/hypr/scripts/ChangeBlur.sh index 0060285b..084af2cb 100755 --- a/config/hypr/scripts/ChangeBlur.sh +++ b/config/hypr/scripts/ChangeBlur.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for changing blurs on the fly notif="$HOME/.config/swaync/images" diff --git a/config/hypr/scripts/ChangeLayout.sh b/config/hypr/scripts/ChangeLayout.sh index 221f9637..499fa1e2 100755 --- a/config/hypr/scripts/ChangeLayout.sh +++ b/config/hypr/scripts/ChangeLayout.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # for changing Hyprland Layouts (Master or Dwindle) on the fly notif="$HOME/.config/swaync/images/ja.png" diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index 3ba5d91a..d08fd8f4 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Clipboard Manager. This script uses cliphist, rofi, and wl-copy. # Variables diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 37016ec3..62bad62b 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +## /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For Dark and Light switching # Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate directories diff --git a/config/hypr/scripts/Distro_update.sh b/config/hypr/scripts/Distro_update.sh index 164de7ec..b4b8e90c 100755 --- a/config/hypr/scripts/Distro_update.sh +++ b/config/hypr/scripts/Distro_update.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Simple bash script to check and will try to update your system # Local Paths diff --git a/config/hypr/scripts/Dropterminal.sh b/config/hypr/scripts/Dropterminal.sh index 9b2eeecb..2a9eb5b1 100755 --- a/config/hypr/scripts/Dropterminal.sh +++ b/config/hypr/scripts/Dropterminal.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # # Made and brought to by Kiran George # /* -- ✨ https://github.com/SherLock707 ✨ -- */ ## diff --git a/config/hypr/scripts/GameMode.sh b/config/hypr/scripts/GameMode.sh index 59cf7372..a28a27fb 100755 --- a/config/hypr/scripts/GameMode.sh +++ b/config/hypr/scripts/GameMode.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Game Mode. Turning off all animations notif="$HOME/.config/swaync/images/ja.png" diff --git a/config/hypr/scripts/Hypridle.sh b/config/hypr/scripts/Hypridle.sh index a9bb90d7..4bf6a985 100755 --- a/config/hypr/scripts/Hypridle.sh +++ b/config/hypr/scripts/Hypridle.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # This is for custom version of waybar idle_inhibitor which activates / deactivates hypridle instead PROCESS="hypridle" diff --git a/config/hypr/scripts/KeyBinds.sh b/config/hypr/scripts/KeyBinds.sh index 26ae832b..341f104f 100755 --- a/config/hypr/scripts/KeyBinds.sh +++ b/config/hypr/scripts/KeyBinds.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # searchable enabled keybinds using rofi (supports bindd descriptions) # kill yad to not interfere with this binds diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index 5511cfed..3916a925 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # GDK BACKEND. Change to either wayland or x11 if having issues BACKEND=wayland @@ -70,4 +70,4 @@ GDK_BACKEND=$BACKEND yad \ " ALT E" "Rofi Emoticons" "Emoticon" \ " H" "Launch this Quick Cheat Sheet" "" \ "" "" "" \ -"More tips:" "https://github.com/JaKooLit/Hyprland-Dots/wiki" ""\ +"More tips:" "https://github.com/LinuxBeginnings/Hyprland-Dots/wiki" ""\ diff --git a/config/hypr/scripts/KeybindsLayoutInit.sh b/config/hypr/scripts/KeybindsLayoutInit.sh index 0a53eaaf..80bee9d6 100755 --- a/config/hypr/scripts/KeybindsLayoutInit.sh +++ b/config/hypr/scripts/KeybindsLayoutInit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Initialize J/K keybinds so they always cycle windows globally (no layout-specific behavior) # This avoids double-actions when layouts change. diff --git a/config/hypr/scripts/KeyboardLayout.sh b/config/hypr/scripts/KeyboardLayout.sh index ec280826..926514dd 100755 --- a/config/hypr/scripts/KeyboardLayout.sh +++ b/config/hypr/scripts/KeyboardLayout.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # This is for changing kb_layouts. Set kb_layouts in "$HOME/.config/hypr/UserConfigs/UserSettings.conf" notif_icon="$HOME/.config/swaync/images/ja.png" diff --git a/config/hypr/scripts/KillActiveProcess.sh b/config/hypr/scripts/KillActiveProcess.sh index d9d26bb3..ff0628b2 100755 --- a/config/hypr/scripts/KillActiveProcess.sh +++ b/config/hypr/scripts/KillActiveProcess.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Copied from Discord post. Thanks to @Zorg diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index fde5edbd..8bc6e0f0 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */  # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */  # # Kitty Themes Source https://github.com/dexpota/kitty-themes # # Define directories and variables diff --git a/config/hypr/scripts/KooLsDotsUpdate.sh b/config/hypr/scripts/KooLsDotsUpdate.sh index 006d66ed..8ed50f27 100755 --- a/config/hypr/scripts/KooLsDotsUpdate.sh +++ b/config/hypr/scripts/KooLsDotsUpdate.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # simple bash script to check if update is available by comparing local version and github version # Local Paths @@ -16,7 +16,7 @@ fi # GitHub URL - KooL's dots branch="main" -github_url="https://github.com/JaKooLit/Hyprland-Dots/tree/$branch/config/hypr/" +github_url="https://github.com/LinuxBeginnings/Hyprland-Dots/tree/$branch/config/hypr/" # Check for required tools (curl) if ! command -v curl &> /dev/null; then notify-send -i "$iDIR/error.png" "Need curl:" "curl not found. Please install curl." @@ -64,7 +64,7 @@ else exit 1 fi kitty -e bash -c " - git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git $KooL_Dots_DIR && + git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git $KooL_Dots_DIR && cd \"$KooL_Dots_DIR\" && chmod +x copy.sh && ./copy.sh && diff --git a/config/hypr/scripts/Kool_Quick_Settings.sh b/config/hypr/scripts/Kool_Quick_Settings.sh index 0cd58f48..2e4004c5 100755 --- a/config/hypr/scripts/Kool_Quick_Settings.sh +++ b/config/hypr/scripts/Kool_Quick_Settings.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Rofi menu for KooL Hyprland Quick Settings (SUPER SHIFT E) # Updated for UserConfigs/configs separation diff --git a/config/hypr/scripts/LockScreen.sh b/config/hypr/scripts/LockScreen.sh index d58f5c21..548a7652 100755 --- a/config/hypr/scripts/LockScreen.sh +++ b/config/hypr/scripts/LockScreen.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For Hyprlock #pidof hyprlock || hyprlock -q diff --git a/config/hypr/scripts/MediaCtrl.sh b/config/hypr/scripts/MediaCtrl.sh index 9dc3571d..b49a967b 100755 --- a/config/hypr/scripts/MediaCtrl.sh +++ b/config/hypr/scripts/MediaCtrl.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Playerctl music_icon="$HOME/.config/swaync/icons/music.png" diff --git a/config/hypr/scripts/MonitorProfiles.sh b/config/hypr/scripts/MonitorProfiles.sh index 1176a46a..62213490 100755 --- a/config/hypr/scripts/MonitorProfiles.sh +++ b/config/hypr/scripts/MonitorProfiles.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For applying Pre-configured Monitor Profiles # Check if rofi is already running diff --git a/config/hypr/scripts/OverviewToggle.sh b/config/hypr/scripts/OverviewToggle.sh index 8d4b285f..3fe9ba96 100755 --- a/config/hypr/scripts/OverviewToggle.sh +++ b/config/hypr/scripts/OverviewToggle.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Overview toggle wrapper - tries Quickshell first, falls back to AGS set -euo pipefail diff --git a/config/hypr/scripts/Polkit-NixOS.sh b/config/hypr/scripts/Polkit-NixOS.sh index 28642d19..925deab5 100755 --- a/config/hypr/scripts/Polkit-NixOS.sh +++ b/config/hypr/scripts/Polkit-NixOS.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For NixOS starting of polkit-gnome. Dec 2023, the settings stated in NixOS wiki does not work so have to manual start it # Find all polkit-gnome executables in the Nix store diff --git a/config/hypr/scripts/Polkit.sh b/config/hypr/scripts/Polkit.sh index 1af8fd1b..9db94d89 100755 --- a/config/hypr/scripts/Polkit.sh +++ b/config/hypr/scripts/Polkit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # This script starts the first available Polkit agent from a list of possible locations # List of potential Polkit agent file paths diff --git a/config/hypr/scripts/PortalHyprland.sh b/config/hypr/scripts/PortalHyprland.sh index 653e9b58..79b1bb96 100755 --- a/config/hypr/scripts/PortalHyprland.sh +++ b/config/hypr/scripts/PortalHyprland.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For manually starting xdg-desktop-portal-hyprland set -euo pipefail diff --git a/config/hypr/scripts/Refresh.sh b/config/hypr/scripts/Refresh.sh index b998b14c..95248b35 100755 --- a/config/hypr/scripts/Refresh.sh +++ b/config/hypr/scripts/Refresh.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Scripts for refreshing ags, waybar, rofi, swaync, wallust SCRIPTSDIR=$HOME/.config/hypr/scripts diff --git a/config/hypr/scripts/RefreshNoWaybar.sh b/config/hypr/scripts/RefreshNoWaybar.sh index 54c760bd..afbda1f2 100755 --- a/config/hypr/scripts/RefreshNoWaybar.sh +++ b/config/hypr/scripts/RefreshNoWaybar.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Modified version of Refresh.sh but waybar wont refresh # Used by automatic wallpaper change diff --git a/config/hypr/scripts/RofiEmoji.sh b/config/hypr/scripts/RofiEmoji.sh index 7e3ef0f3..a21c2374 100755 --- a/config/hypr/scripts/RofiEmoji.sh +++ b/config/hypr/scripts/RofiEmoji.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Variables rofi_theme="$HOME/.config/rofi/config-emoji.rasi" diff --git a/config/hypr/scripts/RofiSearch.sh b/config/hypr/scripts/RofiSearch.sh index dfeb19ac..d7dd5726 100755 --- a/config/hypr/scripts/RofiSearch.sh +++ b/config/hypr/scripts/RofiSearch.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For Searching via web browsers # Define the path to the config file diff --git a/config/hypr/scripts/RofiThemeSelector-modified.sh b/config/hypr/scripts/RofiThemeSelector-modified.sh index d6a353c0..de3ebf4a 100755 --- a/config/hypr/scripts/RofiThemeSelector-modified.sh +++ b/config/hypr/scripts/RofiThemeSelector-modified.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # A modified version of Rofi-Theme-Selector, concentrating only on ~/.local and also, applying only 10 @themes in ~/.config/rofi/config.rasi # as opposed to continous adding of //@theme diff --git a/config/hypr/scripts/RofiThemeSelector.sh b/config/hypr/scripts/RofiThemeSelector.sh index b7236e8f..66327d09 100755 --- a/config/hypr/scripts/RofiThemeSelector.sh +++ b/config/hypr/scripts/RofiThemeSelector.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */  # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */  # # Rofi Themes - Script to preview and apply themes by live-reloading the config. # --- Configuration --- diff --git a/config/hypr/scripts/ScreenShot.sh b/config/hypr/scripts/ScreenShot.sh index 3d578a51..b12c08f0 100755 --- a/config/hypr/scripts/ScreenShot.sh +++ b/config/hypr/scripts/ScreenShot.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Screenshots scripts # variables diff --git a/config/hypr/scripts/Sounds.sh b/config/hypr/scripts/Sounds.sh index e92248da..7c0bf57c 100755 --- a/config/hypr/scripts/Sounds.sh +++ b/config/hypr/scripts/Sounds.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # This script is used to play system sounds. # Script is used by Volume.Sh and ScreenShots.sh diff --git a/config/hypr/scripts/TouchPad.sh b/config/hypr/scripts/TouchPad.sh index f14165a0..56506382 100755 --- a/config/hypr/scripts/TouchPad.sh +++ b/config/hypr/scripts/TouchPad.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # For disabling touchpad. # Edit the Touchpad_Device on ~/.config/hypr/UserConfigs/Laptops.conf according to your system # use hyprctl devices to get your system touchpad device name diff --git a/config/hypr/scripts/UserConfigsSwitcher.sh b/config/hypr/scripts/UserConfigsSwitcher.sh index ad1d4e63..ac44b4bc 100755 --- a/config/hypr/scripts/UserConfigsSwitcher.sh +++ b/config/hypr/scripts/UserConfigsSwitcher.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script to manage UserConfigs and UserConfigsBak HYPR_CONFIG_DIR="$HOME/.config/hypr" diff --git a/config/hypr/scripts/Volume.sh b/config/hypr/scripts/Volume.sh index e1034a68..41e474d0 100755 --- a/config/hypr/scripts/Volume.sh +++ b/config/hypr/scripts/Volume.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Scripts for volume controls for audio and mic iDIR="$HOME/.config/swaync/icons" diff --git a/config/hypr/scripts/WallustSwww.sh b/config/hypr/scripts/WallustSwww.sh index 3cbfcc5a..1f0f50c7 100755 --- a/config/hypr/scripts/WallustSwww.sh +++ b/config/hypr/scripts/WallustSwww.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Wallust: derive colors from the current wallpaper and update templates # Usage: WallustSwww.sh [absolute_path_to_wallpaper] diff --git a/config/hypr/scripts/WaybarCava.sh b/config/hypr/scripts/WaybarCava.sh index 98a8d7f9..98db60dd 100755 --- a/config/hypr/scripts/WaybarCava.sh +++ b/config/hypr/scripts/WaybarCava.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # WaybarCava.sh — safer single-instance handling, cleanup, and robustness -# Original concept by JaKooLit; this variant focuses on lifecycle hardening. +# Original concept by LinuxBeginnings; this variant focuses on lifecycle hardening. set -euo pipefail diff --git a/config/hypr/scripts/WaybarLayout.sh b/config/hypr/scripts/WaybarLayout.sh index d3725a91..247ccf78 100755 --- a/config/hypr/scripts/WaybarLayout.sh +++ b/config/hypr/scripts/WaybarLayout.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for waybar layout or configs IFS=$'\n\t' diff --git a/config/hypr/scripts/WaybarScripts.sh b/config/hypr/scripts/WaybarScripts.sh index 54f7a4b4..142b548d 100755 --- a/config/hypr/scripts/WaybarScripts.sh +++ b/config/hypr/scripts/WaybarScripts.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # This file used on waybar modules sourcing defaults set in $HOME/.config/hypr/UserConfigs/01-UserDefaults.conf # Define the path to the config file diff --git a/config/hypr/scripts/WaybarStyles.sh b/config/hypr/scripts/WaybarStyles.sh index 8ebfed92..2ed8bf26 100755 --- a/config/hypr/scripts/WaybarStyles.sh +++ b/config/hypr/scripts/WaybarStyles.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # Script for waybar styles IFS=$'\n\t' diff --git a/config/hypr/scripts/Wlogout.sh b/config/hypr/scripts/Wlogout.sh index 8879858c..e33222cc 100755 --- a/config/hypr/scripts/Wlogout.sh +++ b/config/hypr/scripts/Wlogout.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## # wlogout (Power, Screen Lock, Suspend, etc) # Set variables for parameters. First numbers corresponts to Monitor Resolution diff --git a/config/hypr/scripts/sddm_wallpaper.sh b/config/hypr/scripts/sddm_wallpaper.sh index 17640f40..26f6c613 100755 --- a/config/hypr/scripts/sddm_wallpaper.sh +++ b/config/hypr/scripts/sddm_wallpaper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # SDDM Wallpaper and Wallust Colors Setter # for the upcoming changes on the simple_sddm_theme diff --git a/config/hypr/v2.3.21 b/config/hypr/v2.3.21 index 31b3414d..51de9972 100644 --- a/config/hypr/v2.3.21 +++ b/config/hypr/v2.3.21 @@ -1,5 +1,5 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/Hyprland-Dots +### https://github.com/LinuxBeginnings ### +## https://github.com/LinuxBeginnings/Hyprland-Dots ## This is to have a reference of which version would be ## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/wallust/wallust-hyprland.conf b/config/hypr/wallust/wallust-hyprland.conf index c7c1debe..88845f82 100644 --- a/config/hypr/wallust/wallust-hyprland.conf +++ b/config/hypr/wallust/wallust-hyprland.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # /* wallust template - colors-hyprland */ $background = rgb(010102) diff --git a/config/hypr/workspaces.conf b/config/hypr/workspaces.conf index 708dee00..5417d940 100644 --- a/config/hypr/workspaces.conf +++ b/config/hypr/workspaces.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # *********************************************************** # # diff --git a/config/kitty/kitty-themes/00-Default.conf b/config/kitty/kitty-themes/00-Default.conf index 39fc496c..640a8d68 100644 --- a/config/kitty/kitty-themes/00-Default.conf +++ b/config/kitty/kitty-themes/00-Default.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # This is just created to remove all the themes include ./01-Wallust.conf diff --git a/config/kitty/kitty-themes/01-Wallust.conf b/config/kitty/kitty-themes/01-Wallust.conf index 0d0a46ad..f5fc8f0a 100644 --- a/config/kitty/kitty-themes/01-Wallust.conf +++ b/config/kitty/kitty-themes/01-Wallust.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # /* wallust template - colors-kitty */ foreground #FDF9FE diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index f110cf53..4757ed7e 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # you can choose themes from $HOME/.config/kitty/kitty-themes/ include ./kitty-themes/00-Default.conf diff --git a/config/rofi/0-shared-fonts.rasi b/config/rofi/0-shared-fonts.rasi index 2c3997b0..4c300e0e 100644 --- a/config/rofi/0-shared-fonts.rasi +++ b/config/rofi/0-shared-fonts.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Ja KooLit - Global rofi fonts */ /* This is where you can change fonts and sizes */ diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index e1994b6a..c12feab5 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Animations Menu */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-Monitors.rasi b/config/rofi/config-Monitors.rasi index 453d7110..3c71f088 100644 --- a/config/rofi/config-Monitors.rasi +++ b/config/rofi/config-Monitors.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Monitor Profiles Menu */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-calc.rasi b/config/rofi/config-calc.rasi index 75912f04..937d4ca3 100644 --- a/config/rofi/config-calc.rasi +++ b/config/rofi/config-calc.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config Calculator */ /* Submitted by: https://github.com/JosephArmas */ diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index 1109c3c0..c70414de 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Clipboard Config - Clipboard */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-edit.rasi b/config/rofi/config-edit.rasi index 915f1580..cb63e374 100644 --- a/config/rofi/config-edit.rasi +++ b/config/rofi/config-edit.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Edit Rofi Config */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index 80aa5076..fa99bfcf 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config - emoji */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index 03c0c8c1..e72517de 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config - For Keybinds generation */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-kitty-theme.rasi b/config/rofi/config-kitty-theme.rasi index f62fea12..ffedba56 100644 --- a/config/rofi/config-kitty-theme.rasi +++ b/config/rofi/config-kitty-theme.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Oh My ZSH Theme */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-rofi-Beats-menu.rasi b/config/rofi/config-rofi-Beats-menu.rasi index 47e14b0d..270448a3 100644 --- a/config/rofi/config-rofi-Beats-menu.rasi +++ b/config/rofi/config-rofi-Beats-menu.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main config Rofi Beats Config menu */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index f2fb7838..4c3d7b96 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Rofi Beats Config */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index 0d77f857..b21fd382 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config Rofi Theme */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-search.rasi b/config/rofi/config-search.rasi index d0d8357e..005b80cf 100644 --- a/config/rofi/config-search.rasi +++ b/config/rofi/config-search.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Rofi Config for Google Search) */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index 1a61e29d..b72edf34 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Wallpaper Effects */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index 3cd320aa..b1ec4fa6 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config (wallpaper) */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi index 2b01b157..8d5ec536 100644 --- a/config/rofi/config-waybar-layout.rasi +++ b/config/rofi/config-waybar-layout.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config (Waybar Layout) */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi index ce6a76a9..fbb17a40 100644 --- a/config/rofi/config-waybar-style.rasi +++ b/config/rofi/config-waybar-style.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Main Config (waybar style) */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config-zsh-theme.rasi b/config/rofi/config-zsh-theme.rasi index 75c44767..e846042c 100644 --- a/config/rofi/config-zsh-theme.rasi +++ b/config/rofi/config-zsh-theme.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Oh My ZSH Theme */ @import "~/.config/rofi/config.rasi" diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi index d05ae9c7..e81dd459 100644 --- a/config/rofi/config.rasi +++ b/config/rofi/config.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Ja KooLit - Default * All main themes or configs are located in ~/.config/rofi/themes/ diff --git a/config/rofi/themes/KooL_LonerOrZ.rasi b/config/rofi/themes/KooL_LonerOrZ.rasi index 0c8ce899..6bc3af3a 100644 --- a/config/rofi/themes/KooL_LonerOrZ.rasi +++ b/config/rofi/themes/KooL_LonerOrZ.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Style LonerOrZ */ /* Submitted by https://github.com/lonerOrz */ /* Edited by Ja */ diff --git a/config/rofi/themes/KooL_style-1.rasi b/config/rofi/themes/KooL_style-1.rasi index 0e2eb709..6a3d8f08 100644 --- a/config/rofi/themes/KooL_style-1.rasi +++ b/config/rofi/themes/KooL_style-1.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 1 */ /* ---- Configuration ---- */ diff --git a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi index 654428b4..fab7e41d 100644 --- a/config/rofi/themes/KooL_style-10-Fancy-v2.rasi +++ b/config/rofi/themes/KooL_style-10-Fancy-v2.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 10 - Fancy v2 */ /* Credit to DaveDavenport & Rasmus Steinke */ diff --git a/config/rofi/themes/KooL_style-10-Fancy.rasi b/config/rofi/themes/KooL_style-10-Fancy.rasi index 195cd707..7be99341 100644 --- a/config/rofi/themes/KooL_style-10-Fancy.rasi +++ b/config/rofi/themes/KooL_style-10-Fancy.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 10 - Fancy */ /* Credit to DaveDavenport. I have only some few things changed */ diff --git a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi index c7843812..8c73d7fe 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 11 - Windows 11 List Dark */ /* source: https://github.com/newmanls */ diff --git a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi index b640dda2..7a9164f0 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 11 - Windows 11 List Light */ /* source: https://github.com/newmanls */ diff --git a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi index fe80019c..072bf0a1 100644 --- a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi +++ b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 12 - TOP - Docu */ /* Credit to DaveDavenport. I have only some few things changed */ diff --git a/config/rofi/themes/KooL_style-13-Vertical.rasi b/config/rofi/themes/KooL_style-13-Vertical.rasi index 850b564c..218251a4 100644 --- a/config/rofi/themes/KooL_style-13-Vertical.rasi +++ b/config/rofi/themes/KooL_style-13-Vertical.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL_Style 13 (thin) */ /* ---- Configuration ---- */ diff --git a/config/rofi/themes/KooL_style-14.rasi b/config/rofi/themes/KooL_style-14.rasi index fddf18bd..408de5b2 100644 --- a/config/rofi/themes/KooL_style-14.rasi +++ b/config/rofi/themes/KooL_style-14.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 14 */ /* original design from: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-15-solarized.rasi b/config/rofi/themes/KooL_style-15-solarized.rasi index 00a53857..cb1a33a0 100644 --- a/config/rofi/themes/KooL_style-15-solarized.rasi +++ b/config/rofi/themes/KooL_style-15-solarized.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 15 */ /* original design: https://github.com/arkboix/dotfiles */ diff --git a/config/rofi/themes/KooL_style-2-Dark.rasi b/config/rofi/themes/KooL_style-2-Dark.rasi index 3ae384f9..a6637469 100644 --- a/config/rofi/themes/KooL_style-2-Dark.rasi +++ b/config/rofi/themes/KooL_style-2-Dark.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 2 Dark */ /* Source: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-2-Light.rasi b/config/rofi/themes/KooL_style-2-Light.rasi index 84700655..f2fcce5c 100644 --- a/config/rofi/themes/KooL_style-2-Light.rasi +++ b/config/rofi/themes/KooL_style-2-Light.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 2 Light */ /* credit: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi index 542f3a1f..ab3107f1 100644 --- a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 3 - Full screen v1 */ /* ---- Configuration ---- */ diff --git a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 37e515a9..7d228571 100644 --- a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 3 - Full screen v2 */ /* credit: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index b1859c37..bc7026c2 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 4 */ /* credit: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-5.rasi b/config/rofi/themes/KooL_style-5.rasi index 72ec7675..8370158c 100644 --- a/config/rofi/themes/KooL_style-5.rasi +++ b/config/rofi/themes/KooL_style-5.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 5 */ /* ---- Configuration ---- */ diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi index a25eaa19..1172fb92 100644 --- a/config/rofi/themes/KooL_style-6.rasi +++ b/config/rofi/themes/KooL_style-6.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 6 */ /* ---- Configuration ---- */ diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index bea2ba47..5f45e3d9 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 7 */ /* original design from: https://github.com/adi1090x/rofi */ diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi index a3dea01a..b369ea96 100644 --- a/config/rofi/themes/KooL_style-8.rasi +++ b/config/rofi/themes/KooL_style-8.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 8 */ diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi index dc50f941..7ee9685e 100644 --- a/config/rofi/themes/KooL_style-9.rasi +++ b/config/rofi/themes/KooL_style-9.rasi @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* KooL Hyprland Rofi Style 9 */ /* Modified version of Rofi Config which was submitted by https://github.com/lonerOrz via Discord */ diff --git a/config/rofi/wallust/colors-rofi.rasi b/config/rofi/wallust/colors-rofi.rasi index 7fb97349..a6b6fabc 100644 --- a/config/rofi/wallust/colors-rofi.rasi +++ b/config/rofi/wallust/colors-rofi.rasi @@ -1,4 +1,4 @@ - /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ + /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* wallust template - colors-rofi */ * { diff --git a/config/swaync/style.css b/config/swaync/style.css index 3fff57ae..08a0f05f 100755 --- a/config/swaync/style.css +++ b/config/swaync/style.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* swaync colors - wallust from waybar.css */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/wallust/templates/colors-cava b/config/wallust/templates/colors-cava index 05e55918..3860904f 100644 --- a/config/wallust/templates/colors-cava +++ b/config/wallust/templates/colors-cava @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # /* wallust template - colors-cava */ ## Configuration file for CAVA. diff --git a/config/wallust/templates/colors-ghostty.conf b/config/wallust/templates/colors-ghostty.conf index abbae8f9..c1817cc4 100644 --- a/config/wallust/templates/colors-ghostty.conf +++ b/config/wallust/templates/colors-ghostty.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # wallust template - colors for Ghostty # This file is included by ~/.config/ghostty/ghostty.config when present. diff --git a/config/wallust/templates/colors-hyprland.conf b/config/wallust/templates/colors-hyprland.conf index 12188328..37c9f16f 100644 --- a/config/wallust/templates/colors-hyprland.conf +++ b/config/wallust/templates/colors-hyprland.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # /* wallust template - colors-hyprland */ $background = rgb({{background | strip}}) diff --git a/config/wallust/templates/colors-kitty.conf b/config/wallust/templates/colors-kitty.conf index 8f0618c2..1ea291be 100644 --- a/config/wallust/templates/colors-kitty.conf +++ b/config/wallust/templates/colors-kitty.conf @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # /* wallust template - colors-kitty */ foreground {{foreground}} diff --git a/config/wallust/templates/colors-rofi.rasi b/config/wallust/templates/colors-rofi.rasi index b839d827..a5555df6 100644 --- a/config/wallust/templates/colors-rofi.rasi +++ b/config/wallust/templates/colors-rofi.rasi @@ -1,4 +1,4 @@ - /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ + /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* wallust template - colors-rofi */ * { diff --git a/config/wallust/templates/colors-swaync.css b/config/wallust/templates/colors-swaync.css index cab0dffb..240ccde5 100644 --- a/config/wallust/templates/colors-swaync.css +++ b/config/wallust/templates/colors-swaync.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* wallust template - colors-swaync */ @define-color text {{foreground}}; diff --git a/config/wallust/templates/colors-waybar.css b/config/wallust/templates/colors-waybar.css index 8f7efa96..7dd191aa 100644 --- a/config/wallust/templates/colors-waybar.css +++ b/config/wallust/templates/colors-waybar.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* wallust template - colors-waybar */ @define-color foreground {{color12}}; diff --git a/config/wallust/wallust-kitty.toml b/config/wallust/wallust-kitty.toml index 69fe67f0..05ef2b55 100644 --- a/config/wallust/wallust-kitty.toml +++ b/config/wallust/wallust-kitty.toml @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # wallust configuration - kitty only backend = "fastresize" diff --git a/config/wallust/wallust.toml b/config/wallust/wallust.toml index 65077208..b74794d9 100644 --- a/config/wallust/wallust.toml +++ b/config/wallust/wallust.toml @@ -1,4 +1,4 @@ -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # wallust configuration - for wallust version 3.0 # How the image is parse, in order to get the colors: diff --git a/config/waybar/Modules b/config/waybar/Modules index c6dc3786..3b9e9ab3 100644 --- a/config/waybar/Modules +++ b/config/waybar/Modules @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Modules */ /* NOTE: hyprland-workspaces, Custom Modules, Custom Vertical & Groups on a separate files */ diff --git a/config/waybar/ModulesCustom b/config/waybar/ModulesCustom index ed30c4c3..8887fa1c 100644 --- a/config/waybar/ModulesCustom +++ b/config/waybar/ModulesCustom @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Modules - Custom Modules */ /* Basically created to reduce the lines in Waybar Modules bank */ /* NOTE: This is only for Custom Modules */ diff --git a/config/waybar/ModulesGroups b/config/waybar/ModulesGroups index 30e47f16..d66da09d 100644 --- a/config/waybar/ModulesGroups +++ b/config/waybar/ModulesGroups @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Modules - Groups Modules */ /* Basically created to reduce the lines in Waybar Modules bank */ /* NOTE: This is only for Groups */ diff --git a/config/waybar/ModulesVertical b/config/waybar/ModulesVertical index 7128471b..4f422632 100644 --- a/config/waybar/ModulesVertical +++ b/config/waybar/ModulesVertical @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Modules for vertical modules or vertical layout */ /* NOTE: hyprland-workspaces, Custom Modules & Groups on a separate files */ diff --git a/config/waybar/ModulesWorkspaces b/config/waybar/ModulesWorkspaces index 5bdccb91..683fcfb5 100644 --- a/config/waybar/ModulesWorkspaces +++ b/config/waybar/ModulesWorkspaces @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Workspaces modules */ /* Generally, this is a potential expanding of choices for hyprland/workspace */ diff --git a/config/waybar/UserModules b/config/waybar/UserModules index abbc8a61..0f2ed43c 100644 --- a/config/waybar/UserModules +++ b/config/waybar/UserModules @@ -1,4 +1,4 @@ -//* ---- 💫 https://github.com/JaKooLit 💫 ---- *// +//* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- *// /* Waybar Modules Extras */ /* This is where you can add Extra Modules you wish. copy.sh will try to restore*/ diff --git a/config/waybar/configs/BOT-&-Left-SouthWest b/config/waybar/configs/BOT-&-Left-SouthWest index 848eccce..5eb6329d 100644 --- a/config/waybar/configs/BOT-&-Left-SouthWest +++ b/config/waybar/configs/BOT-&-Left-SouthWest @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### BOTTOM and LEFT PANEL diff --git a/config/waybar/configs/BOT-&-Right-SouthEast b/config/waybar/configs/BOT-&-Right-SouthEast index 06da035d..d3de215a 100644 --- a/config/waybar/configs/BOT-&-Right-SouthEast +++ b/config/waybar/configs/BOT-&-Right-SouthEast @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### BOTTOM and RIGHT PANEL diff --git a/config/waybar/configs/BOT-Camellia b/config/waybar/configs/BOT-Camellia index f0a52329..5e09e64c 100644 --- a/config/waybar/configs/BOT-Camellia +++ b/config/waybar/configs/BOT-Camellia @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............CAMELLIA.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/BOT-Chrysanthemum b/config/waybar/configs/BOT-Chrysanthemum index 3bc401c9..366d0312 100644 --- a/config/waybar/configs/BOT-Chrysanthemum +++ b/config/waybar/configs/BOT-Chrysanthemum @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............CHRYSANTHEMUM.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/BOT-Default b/config/waybar/configs/BOT-Default index f88fd86e..3e8bfe46 100644 --- a/config/waybar/configs/BOT-Default +++ b/config/waybar/configs/BOT-Default @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Bottom ### // { diff --git a/config/waybar/configs/BOT-Default-Laptop b/config/waybar/configs/BOT-Default-Laptop index d3e7452a..df0c9fc4 100644 --- a/config/waybar/configs/BOT-Default-Laptop +++ b/config/waybar/configs/BOT-Default-Laptop @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Laptop - Bottom ### // { diff --git a/config/waybar/configs/BOT-Gardenia b/config/waybar/configs/BOT-Gardenia index 42355cac..09c7537e 100644 --- a/config/waybar/configs/BOT-Gardenia +++ b/config/waybar/configs/BOT-Gardenia @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............GARDENIA.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/BOT-Peony b/config/waybar/configs/BOT-Peony index 711abecf..8a11dc8e 100644 --- a/config/waybar/configs/BOT-Peony +++ b/config/waybar/configs/BOT-Peony @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* ................PEONY.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/BOT-Simple b/config/waybar/configs/BOT-Simple index cba45a1a..05941ed5 100644 --- a/config/waybar/configs/BOT-Simple +++ b/config/waybar/configs/BOT-Simple @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### TOP Simple ## // { diff --git a/config/waybar/configs/BOT-Sleek b/config/waybar/configs/BOT-Sleek index 0dda9b35..2220db6c 100644 --- a/config/waybar/configs/BOT-Sleek +++ b/config/waybar/configs/BOT-Sleek @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // Sleek diff --git a/config/waybar/configs/LEFT-WestWing b/config/waybar/configs/LEFT-WestWing index 28e5dbec..2195750f 100644 --- a/config/waybar/configs/LEFT-WestWing +++ b/config/waybar/configs/LEFT-WestWing @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### LEFT PANEL ### // diff --git a/config/waybar/configs/LEFT-WestWing-v2 b/config/waybar/configs/LEFT-WestWing-v2 index 906f83d6..e472e9f6 100644 --- a/config/waybar/configs/LEFT-WestWing-v2 +++ b/config/waybar/configs/LEFT-WestWing-v2 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### LEFT PANEL v2 ### // diff --git a/config/waybar/configs/RIGHT-EastWing b/config/waybar/configs/RIGHT-EastWing index a5ce6756..8b964f03 100644 --- a/config/waybar/configs/RIGHT-EastWing +++ b/config/waybar/configs/RIGHT-EastWing @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### RIGHT PANEL ### // diff --git a/config/waybar/configs/RIGHT-EastWing-v2 b/config/waybar/configs/RIGHT-EastWing-v2 index 28dd1e43..628f912f 100644 --- a/config/waybar/configs/RIGHT-EastWing-v2 +++ b/config/waybar/configs/RIGHT-EastWing-v2 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### RIGHTPANEL v2 ### // diff --git a/config/waybar/configs/TOP-&-BOT-SummitSplit b/config/waybar/configs/TOP-&-BOT-SummitSplit index 7edbe898..7ed65f97 100644 --- a/config/waybar/configs/TOP-&-BOT-SummitSplit +++ b/config/waybar/configs/TOP-&-BOT-SummitSplit @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DUAL TOP and BOTTOM ### // diff --git a/config/waybar/configs/TOP-&-BOT-SummitSplit-glass b/config/waybar/configs/TOP-&-BOT-SummitSplit-glass index 2ffe0301..0cef4521 100644 --- a/config/waybar/configs/TOP-&-BOT-SummitSplit-glass +++ b/config/waybar/configs/TOP-&-BOT-SummitSplit-glass @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DUAL TOP and BOTTOM ### // diff --git a/config/waybar/configs/TOP-&-BOT-SummitSplit-v2 b/config/waybar/configs/TOP-&-BOT-SummitSplit-v2 index 4d576aef..ec5ce391 100644 --- a/config/waybar/configs/TOP-&-BOT-SummitSplit-v2 +++ b/config/waybar/configs/TOP-&-BOT-SummitSplit-v2 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* ### DUAL TOP and BOTTOM v 2### */ diff --git a/config/waybar/configs/TOP-&-Left-NorthWest b/config/waybar/configs/TOP-&-Left-NorthWest index 09071dc6..99282e23 100644 --- a/config/waybar/configs/TOP-&-Left-NorthWest +++ b/config/waybar/configs/TOP-&-Left-NorthWest @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### TOP and LEFT PANEL ## // diff --git a/config/waybar/configs/TOP-&-Right-NorthEast b/config/waybar/configs/TOP-&-Right-NorthEast index 58909ba8..deba8fb0 100644 --- a/config/waybar/configs/TOP-&-Right-NorthEast +++ b/config/waybar/configs/TOP-&-Right-NorthEast @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### TOP and Right PANEL ## // diff --git a/config/waybar/configs/TOP-0-Ja-0 b/config/waybar/configs/TOP-0-Ja-0 index 6e7fc9aa..e54d32f8 100644 --- a/config/waybar/configs/TOP-0-Ja-0 +++ b/config/waybar/configs/TOP-0-Ja-0 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* My Mostly Used waybar config incase you wonder :) */ { diff --git a/config/waybar/configs/TOP-Arrow b/config/waybar/configs/TOP-Arrow index 7fc55f60..14089a41 100644 --- a/config/waybar/configs/TOP-Arrow +++ b/config/waybar/configs/TOP-Arrow @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .....[TOP] Arrow Best to combine with [Extra] Arrow Style ......... */ /* --- 👍 taken from https://github.com/mxkrsv 👍 --- */ diff --git a/config/waybar/configs/TOP-Camellia b/config/waybar/configs/TOP-Camellia index efaf6e20..d6723438 100644 --- a/config/waybar/configs/TOP-Camellia +++ b/config/waybar/configs/TOP-Camellia @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............CAMELLIA.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/TOP-Chrysanthemum b/config/waybar/configs/TOP-Chrysanthemum index d12f73e3..2028b179 100644 --- a/config/waybar/configs/TOP-Chrysanthemum +++ b/config/waybar/configs/TOP-Chrysanthemum @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............CHRYSANTHEMUM.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/TOP-Default b/config/waybar/configs/TOP-Default index 1f3c9613..03dba497 100644 --- a/config/waybar/configs/TOP-Default +++ b/config/waybar/configs/TOP-Default @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Top ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop b/config/waybar/configs/TOP-Default-Laptop index 9453a978..0d17d832 100644 --- a/config/waybar/configs/TOP-Default-Laptop +++ b/config/waybar/configs/TOP-Default-Laptop @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Laptop - Top ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-glass b/config/waybar/configs/TOP-Default-Laptop-glass index 65e4ceb7..1e94d40a 100644 --- a/config/waybar/configs/TOP-Default-Laptop-glass +++ b/config/waybar/configs/TOP-Default-Laptop-glass @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Laptop - Top ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-old-v1 b/config/waybar/configs/TOP-Default-Laptop-old-v1 index db46425c..76dcd85e 100644 --- a/config/waybar/configs/TOP-Default-Laptop-old-v1 +++ b/config/waybar/configs/TOP-Default-Laptop-old-v1 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Top -Laptop (old v1) ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-old-v2 b/config/waybar/configs/TOP-Default-Laptop-old-v2 index 15d16ce0..5aea9d9b 100644 --- a/config/waybar/configs/TOP-Default-Laptop-old-v2 +++ b/config/waybar/configs/TOP-Default-Laptop-old-v2 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT (Laptop) - Top (old v2) ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-old-v3 b/config/waybar/configs/TOP-Default-Laptop-old-v3 index 1eaf32e1..762eddb1 100644 --- a/config/waybar/configs/TOP-Default-Laptop-old-v3 +++ b/config/waybar/configs/TOP-Default-Laptop-old-v3 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT (Laptop) - Top (old v3) ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-old-v4 b/config/waybar/configs/TOP-Default-Laptop-old-v4 index 79a0c36a..b20c284d 100644 --- a/config/waybar/configs/TOP-Default-Laptop-old-v4 +++ b/config/waybar/configs/TOP-Default-Laptop-old-v4 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT (Laptop) - Top (old v4) ### // { diff --git a/config/waybar/configs/TOP-Default-Laptop-old-v5 b/config/waybar/configs/TOP-Default-Laptop-old-v5 index 0e49f0c2..af827aa3 100644 --- a/config/waybar/configs/TOP-Default-Laptop-old-v5 +++ b/config/waybar/configs/TOP-Default-Laptop-old-v5 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Laptop - Top ### // { diff --git a/config/waybar/configs/TOP-Default-old-v1 b/config/waybar/configs/TOP-Default-old-v1 index 62e02422..83e3726c 100644 --- a/config/waybar/configs/TOP-Default-old-v1 +++ b/config/waybar/configs/TOP-Default-old-v1 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Top (old v1) ### // { diff --git a/config/waybar/configs/TOP-Default-old-v2 b/config/waybar/configs/TOP-Default-old-v2 index 61621fb7..ef28bf86 100644 --- a/config/waybar/configs/TOP-Default-old-v2 +++ b/config/waybar/configs/TOP-Default-old-v2 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Top (old v2) ### // { diff --git a/config/waybar/configs/TOP-Default-old-v3 b/config/waybar/configs/TOP-Default-old-v3 index b89e3117..273ddbd9 100644 --- a/config/waybar/configs/TOP-Default-old-v3 +++ b/config/waybar/configs/TOP-Default-old-v3 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Top (old v3) ### // { diff --git a/config/waybar/configs/TOP-Default-old-v4 b/config/waybar/configs/TOP-Default-old-v4 index 18abc6ad..dd5a9033 100644 --- a/config/waybar/configs/TOP-Default-old-v4 +++ b/config/waybar/configs/TOP-Default-old-v4 @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT - Top (old v4) ### // { diff --git a/config/waybar/configs/TOP-Everforest b/config/waybar/configs/TOP-Everforest index db49b7ed..26bec9d8 100644 --- a/config/waybar/configs/TOP-Everforest +++ b/config/waybar/configs/TOP-Everforest @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* -- designed by https://github.com/DevNChill */ // ### Everforest ### // diff --git a/config/waybar/configs/TOP-Everforest-glass b/config/waybar/configs/TOP-Everforest-glass index 8032f216..65e7542a 100644 --- a/config/waybar/configs/TOP-Everforest-glass +++ b/config/waybar/configs/TOP-Everforest-glass @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* -- designed by https://github.com/DevNChill */ // ### Everforest ### // diff --git a/config/waybar/configs/TOP-Gardenia b/config/waybar/configs/TOP-Gardenia index 073ff46e..1357da5f 100644 --- a/config/waybar/configs/TOP-Gardenia +++ b/config/waybar/configs/TOP-Gardenia @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* .............GARDENIA.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/TOP-Minimal-Long b/config/waybar/configs/TOP-Minimal-Long index a5be4bd7..a40aa673 100644 --- a/config/waybar/configs/TOP-Minimal-Long +++ b/config/waybar/configs/TOP-Minimal-Long @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### Minimal - Long ### // diff --git a/config/waybar/configs/TOP-Minimal-Short b/config/waybar/configs/TOP-Minimal-Short index 3871591e..5f0af150 100644 --- a/config/waybar/configs/TOP-Minimal-Short +++ b/config/waybar/configs/TOP-Minimal-Short @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### Minimal -SHORT ### // diff --git a/config/waybar/configs/TOP-Peony b/config/waybar/configs/TOP-Peony index a1ef02e8..7f666c2f 100644 --- a/config/waybar/configs/TOP-Peony +++ b/config/waybar/configs/TOP-Peony @@ -1,4 +1,4 @@ -//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +//* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ //* ............................................*/ //* ................PEONY.......................*/ //* ............................................*/ diff --git a/config/waybar/configs/TOP-Simple b/config/waybar/configs/TOP-Simple index dd080560..acfa8a43 100644 --- a/config/waybar/configs/TOP-Simple +++ b/config/waybar/configs/TOP-Simple @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### TOP Simple ## // { diff --git a/config/waybar/configs/TOP-Simpliest b/config/waybar/configs/TOP-Simpliest index c32a27a9..15c40918 100644 --- a/config/waybar/configs/TOP-Simpliest +++ b/config/waybar/configs/TOP-Simpliest @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### TOP Simpliests ## // { diff --git a/config/waybar/configs/TOP-Sleek b/config/waybar/configs/TOP-Sleek index f591f472..cd50039c 100644 --- a/config/waybar/configs/TOP-Sleek +++ b/config/waybar/configs/TOP-Sleek @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // Sleek { diff --git a/config/waybar/configs/TOP-ddubs-simple-bar b/config/waybar/configs/TOP-ddubs-simple-bar index 90b64980..1b459c19 100644 --- a/config/waybar/configs/TOP-ddubs-simple-bar +++ b/config/waybar/configs/TOP-ddubs-simple-bar @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ // ### DEFAULT Laptop - Top ### // { diff --git a/config/waybar/style/0-VERTICAL-Catpuccin-Mocha.css b/config/waybar/style/0-VERTICAL-Catpuccin-Mocha.css index b6583d86..66663a76 100644 --- a/config/waybar/style/0-VERTICAL-Catpuccin-Mocha.css +++ b/config/waybar/style/0-VERTICAL-Catpuccin-Mocha.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Vertical Catpuccin Mocha */ /* As stated on title, best style for vertical layout waybar config */ diff --git a/config/waybar/style/0-VERTICAL-Golden-Noir.css b/config/waybar/style/0-VERTICAL-Golden-Noir.css index 80b3e3ed..1fa6babb 100644 --- a/config/waybar/style/0-VERTICAL-Golden-Noir.css +++ b/config/waybar/style/0-VERTICAL-Golden-Noir.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ...............Golden Noir................ */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/0-VERTICAL-Oglo-Chicklets.css b/config/waybar/style/0-VERTICAL-Oglo-Chicklets.css index b43a6571..39a2cb47 100644 --- a/config/waybar/style/0-VERTICAL-Oglo-Chicklets.css +++ b/config/waybar/style/0-VERTICAL-Oglo-Chicklets.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Oglo Chicklets */ * { diff --git a/config/waybar/style/Black-&-White-Monochrome.css b/config/waybar/style/Black-&-White-Monochrome.css index f897c555..0873374c 100644 --- a/config/waybar/style/Black-&-White-Monochrome.css +++ b/config/waybar/style/Black-&-White-Monochrome.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Black & White MonoChrome */ * { diff --git a/config/waybar/style/Catppuccin-Frappe.css b/config/waybar/style/Catppuccin-Frappe.css index 7c3c557f..cac79f2f 100644 --- a/config/waybar/style/Catppuccin-Frappe.css +++ b/config/waybar/style/Catppuccin-Frappe.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Frappe */ * { diff --git a/config/waybar/style/Catppuccin-Latte.css b/config/waybar/style/Catppuccin-Latte.css index 6984df38..3f20b20a 100644 --- a/config/waybar/style/Catppuccin-Latte.css +++ b/config/waybar/style/Catppuccin-Latte.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Latte */ * { diff --git a/config/waybar/style/Catppuccin-Mocha.css b/config/waybar/style/Catppuccin-Mocha.css index 35a4aba7..e8d3d7d0 100644 --- a/config/waybar/style/Catppuccin-Mocha.css +++ b/config/waybar/style/Catppuccin-Mocha.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Mocha */ * { diff --git a/config/waybar/style/Colored-Chroma-Glow.css b/config/waybar/style/Colored-Chroma-Glow.css index 6ec9602d..498b5d11 100644 --- a/config/waybar/style/Colored-Chroma-Glow.css +++ b/config/waybar/style/Colored-Chroma-Glow.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Chroma Glow */ * { diff --git a/config/waybar/style/Colored-Translucent.css b/config/waybar/style/Colored-Translucent.css index f16fdc78..595effc4 100644 --- a/config/waybar/style/Colored-Translucent.css +++ b/config/waybar/style/Colored-Translucent.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Translucent */ @define-color critical #ff0000; /* critical color */ diff --git a/config/waybar/style/Colorful-Aurora-Blossom.css b/config/waybar/style/Colorful-Aurora-Blossom.css index 9eda0868..1be4d655 100644 --- a/config/waybar/style/Colorful-Aurora-Blossom.css +++ b/config/waybar/style/Colorful-Aurora-Blossom.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Aurora Blossom */ * { diff --git a/config/waybar/style/Colorful-Aurora.css b/config/waybar/style/Colorful-Aurora.css index d4232f22..93da00b8 100644 --- a/config/waybar/style/Colorful-Aurora.css +++ b/config/waybar/style/Colorful-Aurora.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Aurora */ * { diff --git a/config/waybar/style/Colorful-Oglo-Chicklets.css b/config/waybar/style/Colorful-Oglo-Chicklets.css index 61b99f40..b0b1cf95 100644 --- a/config/waybar/style/Colorful-Oglo-Chicklets.css +++ b/config/waybar/style/Colorful-Oglo-Chicklets.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Oglo Chicklets */ * { diff --git a/config/waybar/style/Colorful-Rainbow-Spectrum.css b/config/waybar/style/Colorful-Rainbow-Spectrum.css index 24320ae6..98b00dd4 100644 --- a/config/waybar/style/Colorful-Rainbow-Spectrum.css +++ b/config/waybar/style/Colorful-Rainbow-Spectrum.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Rainbow Spectrum */ * { diff --git a/config/waybar/style/Colorful-stolen-style.css b/config/waybar/style/Colorful-stolen-style.css index cc1f12fa..b2d03e06 100644 --- a/config/waybar/style/Colorful-stolen-style.css +++ b/config/waybar/style/Colorful-stolen-style.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ....[Colorful] Stolen ......... */ * { font-family: "JetBrainsMono Nerd Font"; diff --git a/config/waybar/style/Dark-Golden-Eclipse.css b/config/waybar/style/Dark-Golden-Eclipse.css index a12135ba..107dc725 100644 --- a/config/waybar/style/Dark-Golden-Eclipse.css +++ b/config/waybar/style/Dark-Golden-Eclipse.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Golden Eclipse */ * { diff --git a/config/waybar/style/Dark-Golden-Noir.css b/config/waybar/style/Dark-Golden-Noir.css index 32b03390..357d80a5 100644 --- a/config/waybar/style/Dark-Golden-Noir.css +++ b/config/waybar/style/Dark-Golden-Noir.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ...............Golden Noir................ */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/Dark-Half-Moon.css b/config/waybar/style/Dark-Half-Moon.css index fbcb8278..30de6a86 100644 --- a/config/waybar/style/Dark-Half-Moon.css +++ b/config/waybar/style/Dark-Half-Moon.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ..........Half Moon.................. */ /* NOTE: This is only for some waybar configs */ /* --- 👍 shared by https://github.com/TomekBobrowicz 👍 --- */ diff --git a/config/waybar/style/Dark-Latte-Wallust-combined-v2.css b/config/waybar/style/Dark-Latte-Wallust-combined-v2.css index fecde9d8..e707c26b 100644 --- a/config/waybar/style/Dark-Latte-Wallust-combined-v2.css +++ b/config/waybar/style/Dark-Latte-Wallust-combined-v2.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Latte - Wallust - v2 */ @define-color white #F2F2F2; diff --git a/config/waybar/style/Dark-Latte-Wallust-combined.css b/config/waybar/style/Dark-Latte-Wallust-combined.css index d410b79f..bbe23b8b 100644 --- a/config/waybar/style/Dark-Latte-Wallust-combined.css +++ b/config/waybar/style/Dark-Latte-Wallust-combined.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Latte - Wallust */ /* Original Design by DC user mannatsingh */ diff --git a/config/waybar/style/Dark-Purpl.css b/config/waybar/style/Dark-Purpl.css index 5a73a394..9cb25cdf 100644 --- a/config/waybar/style/Dark-Purpl.css +++ b/config/waybar/style/Dark-Purpl.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .............Purpl..................... */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/Dark-Wallust-Obsidian-Edge.css b/config/waybar/style/Dark-Wallust-Obsidian-Edge.css index adc0543d..264fc183 100644 --- a/config/waybar/style/Dark-Wallust-Obsidian-Edge.css +++ b/config/waybar/style/Dark-Wallust-Obsidian-Edge.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Dark - Obsidian Edge */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Extra-Arrow.css b/config/waybar/style/Extra-Arrow.css index 623de072..e70be55c 100644 --- a/config/waybar/style/Extra-Arrow.css +++ b/config/waybar/style/Extra-Arrow.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .....[Extra] Arrow Best to combine with [TOP] Arrow.... */ /* --- 👍 taken from https://github.com/mxkrsv 👍 --- */ diff --git a/config/waybar/style/Extra-Crimson.css b/config/waybar/style/Extra-Crimson.css index f2e5fb03..309808c5 100644 --- a/config/waybar/style/Extra-Crimson.css +++ b/config/waybar/style/Extra-Crimson.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ..........Crimson.................. */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/Extra-EverForest.css b/config/waybar/style/Extra-EverForest.css index 2bbaa4a2..ce0b4c7b 100644 --- a/config/waybar/style/Extra-EverForest.css +++ b/config/waybar/style/Extra-EverForest.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* --- Designed by https://github.com/DevNChill --- */ /* Extra - EverForest*/ diff --git a/config/waybar/style/Extra-ML4W-starter.css b/config/waybar/style/Extra-ML4W-starter.css index 68303d9d..caaeea8d 100644 --- a/config/waybar/style/Extra-ML4W-starter.css +++ b/config/waybar/style/Extra-ML4W-starter.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* ML4W - Waybar Style */ /* Original design from ML4W - Hyprland Starter Waybar */ diff --git a/config/waybar/style/Extra-Mauve.css b/config/waybar/style/Extra-Mauve.css index 707b8613..7f260dd7 100644 --- a/config/waybar/style/Extra-Mauve.css +++ b/config/waybar/style/Extra-Mauve.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .......Mauve....................... */ /* --- 👍 designed by https://github.com/CelestiaKai 👍 --- */ diff --git a/config/waybar/style/Extra-Modern-Combined-Transparent.css b/config/waybar/style/Extra-Modern-Combined-Transparent.css index 6da2f9d4..b5a6f3bd 100644 --- a/config/waybar/style/Extra-Modern-Combined-Transparent.css +++ b/config/waybar/style/Extra-Modern-Combined-Transparent.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Extra - Combined Modern - transparent */ /* NOTE: This style is NOT vertical layout friendly! */ diff --git a/config/waybar/style/Extra-Modern-Combined.css b/config/waybar/style/Extra-Modern-Combined.css index d9fa9325..42f493ae 100644 --- a/config/waybar/style/Extra-Modern-Combined.css +++ b/config/waybar/style/Extra-Modern-Combined.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Extra - Combined Modern */ /* NOTE: This style is NOT vertical layout friendly! */ diff --git a/config/waybar/style/Extra-Neon-Circuit.css b/config/waybar/style/Extra-Neon-Circuit.css index 8991e6d1..0518bf27 100644 --- a/config/waybar/style/Extra-Neon-Circuit.css +++ b/config/waybar/style/Extra-Neon-Circuit.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* --- Extra - Neon Circuit - waybar style ---*/ @define-color bar-bg rgba(0, 0, 0, 0); diff --git a/config/waybar/style/Extra-Prismatic-Glow.css b/config/waybar/style/Extra-Prismatic-Glow.css index 6e26037b..e7aaa398 100644 --- a/config/waybar/style/Extra-Prismatic-Glow.css +++ b/config/waybar/style/Extra-Prismatic-Glow.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .............Prismatic Glow............ */ * { diff --git a/config/waybar/style/Extra-Rose-Pine.css b/config/waybar/style/Extra-Rose-Pine.css index fdbd4fed..c9d16106 100644 --- a/config/waybar/style/Extra-Rose-Pine.css +++ b/config/waybar/style/Extra-Rose-Pine.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Rose Pine */ diff --git a/config/waybar/style/Extra-Simple-Pink.css b/config/waybar/style/Extra-Simple-Pink.css index e21e0adf..19d47542 100644 --- a/config/waybar/style/Extra-Simple-Pink.css +++ b/config/waybar/style/Extra-Simple-Pink.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .......Simple Pink....................... */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/Light-Monochrome-Contrast.css b/config/waybar/style/Light-Monochrome-Contrast.css index 30e81a83..4251e754 100644 --- a/config/waybar/style/Light-Monochrome-Contrast.css +++ b/config/waybar/style/Light-Monochrome-Contrast.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Light - MonoChrome Contrast */ * { diff --git a/config/waybar/style/Light-Obsidian-Glow.css b/config/waybar/style/Light-Obsidian-Glow.css index 74ccb12a..4d5db584 100644 --- a/config/waybar/style/Light-Obsidian-Glow.css +++ b/config/waybar/style/Light-Obsidian-Glow.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Light - Obsidian Glow */ * { diff --git a/config/waybar/style/Rainbow-RGB-Bordered.css b/config/waybar/style/Rainbow-RGB-Bordered.css index fcf16129..f2276cdc 100644 --- a/config/waybar/style/Rainbow-RGB-Bordered.css +++ b/config/waybar/style/Rainbow-RGB-Bordered.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Catppuccin Mocha - Rainbow Bordered */ /* Designed by https://github.com/0xl30 */ diff --git a/config/waybar/style/Retro-Simple-Style.css b/config/waybar/style/Retro-Simple-Style.css index ceb4110d..d7e4665c 100644 --- a/config/waybar/style/Retro-Simple-Style.css +++ b/config/waybar/style/Retro-Simple-Style.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Simple Style */ @define-color background #1d2021; diff --git a/config/waybar/style/Transparent-Crystal-Clear.css b/config/waybar/style/Transparent-Crystal-Clear.css index 743051a9..72b6aeb1 100644 --- a/config/waybar/style/Transparent-Crystal-Clear.css +++ b/config/waybar/style/Transparent-Crystal-Clear.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* .......Crystal Clear....................... */ /* --- 👍 designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/style/VERTICAL-Catpuccin-Mocha.css b/config/waybar/style/VERTICAL-Catpuccin-Mocha.css index b6d3d098..41d77e73 100644 --- a/config/waybar/style/VERTICAL-Catpuccin-Mocha.css +++ b/config/waybar/style/VERTICAL-Catpuccin-Mocha.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Vertical Catpuccin Mocha */ /* As stated on title, best style for vertical layout waybar config */ diff --git a/config/waybar/style/Wallust-Bordered-Chroma-Fusion-Edge.css b/config/waybar/style/Wallust-Bordered-Chroma-Fusion-Edge.css index bb5bf01f..e593b9fd 100644 --- a/config/waybar/style/Wallust-Bordered-Chroma-Fusion-Edge.css +++ b/config/waybar/style/Wallust-Bordered-Chroma-Fusion-Edge.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ....Chroma Fusion Edge .... */ /* Wallust & Catppuccin - Bordered */ diff --git a/config/waybar/style/Wallust-Bordered-Chroma-Simple.css b/config/waybar/style/Wallust-Bordered-Chroma-Simple.css index 2a1ede12..3e277f6c 100644 --- a/config/waybar/style/Wallust-Bordered-Chroma-Simple.css +++ b/config/waybar/style/Wallust-Bordered-Chroma-Simple.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* Wallust Bordered - Chroma Simple */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-Box-type.css b/config/waybar/style/Wallust-Box-type.css index 9089b9d5..6bd2a5de 100644 --- a/config/waybar/style/Wallust-Box-type.css +++ b/config/waybar/style/Wallust-Box-type.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Wallust - Box type */ @import "../../.config/waybar/wallust/colors-waybar.css"; diff --git a/config/waybar/style/Wallust-Chroma-Edge.css b/config/waybar/style/Wallust-Chroma-Edge.css index 5706a399..82125870 100644 --- a/config/waybar/style/Wallust-Chroma-Edge.css +++ b/config/waybar/style/Wallust-Chroma-Edge.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Wallust Chroma Edge */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-Chroma-Fusion.css b/config/waybar/style/Wallust-Chroma-Fusion.css index 111fe50f..4399f125 100644 --- a/config/waybar/style/Wallust-Chroma-Fusion.css +++ b/config/waybar/style/Wallust-Chroma-Fusion.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ....Chroma Fusion .... */ /* Wallust - Catpuccin */ diff --git a/config/waybar/style/Wallust-Chroma-Tally-V2.css b/config/waybar/style/Wallust-Chroma-Tally-V2.css index bbb644de..d33e638a 100644 --- a/config/waybar/style/Wallust-Chroma-Tally-V2.css +++ b/config/waybar/style/Wallust-Chroma-Tally-V2.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Wallust - Chroma Tally v2 */ /* edited by: https://github.com/prateekshukla1108 */ diff --git a/config/waybar/style/Wallust-Chroma-Tally.css b/config/waybar/style/Wallust-Chroma-Tally.css index b6ab1470..70e1f402 100644 --- a/config/waybar/style/Wallust-Chroma-Tally.css +++ b/config/waybar/style/Wallust-Chroma-Tally.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* Wallust - Chroma Tally */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-Colored.css b/config/waybar/style/Wallust-Colored.css index 80ffb1b0..934374aa 100644 --- a/config/waybar/style/Wallust-Colored.css +++ b/config/waybar/style/Wallust-Colored.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* Wallust Colored*/ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-ML4W-modern-mixed.css b/config/waybar/style/Wallust-ML4W-modern-mixed.css index 5a22f177..d627b576 100644 --- a/config/waybar/style/Wallust-ML4W-modern-mixed.css +++ b/config/waybar/style/Wallust-ML4W-modern-mixed.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* ml4w-modern-mixed */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-ML4W-modern.css b/config/waybar/style/Wallust-ML4W-modern.css index 24b459a6..7c0e9c61 100644 --- a/config/waybar/style/Wallust-ML4W-modern.css +++ b/config/waybar/style/Wallust-ML4W-modern.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* ml4w-modern */ @import '../../.config/waybar/wallust/colors-waybar.css'; diff --git a/config/waybar/style/Wallust-Simple.css b/config/waybar/style/Wallust-Simple.css index f0f2cab2..90342d67 100644 --- a/config/waybar/style/Wallust-Simple.css +++ b/config/waybar/style/Wallust-Simple.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* Wallust - Simple */ *{ diff --git a/config/waybar/style/Wallust-Transparent-Crystal-Clear.css b/config/waybar/style/Wallust-Transparent-Crystal-Clear.css index 9182d536..d25149d2 100644 --- a/config/waybar/style/Wallust-Transparent-Crystal-Clear.css +++ b/config/waybar/style/Wallust-Transparent-Crystal-Clear.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* ....Wallust Transparent - Crystal Clear........ */ /* --- 👍 original designed by https://github.com/Krautt 👍 --- */ diff --git a/config/waybar/wallust/colors-waybar.css b/config/waybar/wallust/colors-waybar.css index 7f7e3eb9..ec9b7a20 100644 --- a/config/waybar/wallust/colors-waybar.css +++ b/config/waybar/wallust/colors-waybar.css @@ -1,4 +1,4 @@ -/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ /* wallust template - colors-waybar */ @define-color foreground #7F4EA2; diff --git a/config/wlogout/style.css b/config/wlogout/style.css index f1c12456..c6f231f0 100644 --- a/config/wlogout/style.css +++ b/config/wlogout/style.css @@ -1,4 +1,4 @@ -/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */ +/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */ /* wallust-wlogout */ /* Importing wallust colors */ diff --git a/copy.sh b/copy.sh index 71d16572..ea582fca 100755 --- a/copy.sh +++ b/copy.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ # +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ # # Purpose: -# Orchestrates copying/upgrading JaKooLit's Hyprland dotfiles into ~/.config. +# Orchestrates copying/upgrading LinuxBeginnings's Hyprland dotfiles into ~/.config. # Handles interactive prompts, backups/restores, per-app tweaks, and express mode. # # Layout (high-level; future modularization targets): @@ -630,7 +630,7 @@ else case $WALL in [Yy]) echo "${NOTE} Downloading additional wallpapers..." - if git clone "https://github.com/JaKooLit/Wallpaper-Bank.git"; then + if git clone "https://github.com/LinuxBeginnings/Wallpaper-Bank.git"; then echo "${OK} Wallpapers downloaded successfully." 2>&1 | tee -a "$LOG" # Check if wallpapers directory exists and create it if not diff --git a/i18n/CONTRIBUTING/CONTRIBUTING.es.md b/i18n/CONTRIBUTING/CONTRIBUTING.es.md index e0d5e28e..5be2d614 100644 --- a/i18n/CONTRIBUTING/CONTRIBUTING.es.md +++ b/i18n/CONTRIBUTING/CONTRIBUTING.es.md @@ -7,7 +7,7 @@ ## Primeros pasos 1. Haz un fork del repositorio de la rama `development` en tu cuenta de GitHub. Así tendrás una copia sobre la cual trabajar sin afectar el repositorio original. - - Para hacer fork, pulsa el botón **Fork** en la esquina superior derecha de esta página o haz clic [aquí](https://github.com/JaKooLit/Hyprland-Dots/fork). + - Para hacer fork, pulsa el botón **Fork** en la esquina superior derecha de esta página o haz clic [aquí](https://github.com/LinuxBeginnings/Hyprland-Dots/fork). - Asegúrate de desmarcar la opción de copiar solo la rama `main`. Así se copiarán la rama `development` y otras ramas (si existen). 2. Clona tu repositorio bifurcado en tu equipo. @@ -15,7 +15,7 @@ - Usa el siguiente comando para clonar tu fork: ```bash - git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git + git clone --depth=1 -b development https://github.com/LinuxBeginnings/Hyprland-Dots.git ``` 3. Crea una rama nueva para tus cambios. @@ -45,7 +45,7 @@ 1. Ve a tu fork en GitHub. 2. Haz clic en **Compare & pull request** junto a tu rama. 3. Añade un título y una descripción. - 4. Pulsa **Create pull request** y recuerda añadir las etiquetas correspondientes usando la [plantilla de PR](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). + 4. Pulsa **Create pull request** y recuerda añadir las etiquetas correspondientes usando la [plantilla de PR](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md). ## Directrices @@ -55,15 +55,15 @@ - Asegúrate de que todos los tests pasen o que los cambios estén probados antes de enviar. - Mantén tu PR enfocado y evita incluir cambios no relacionados. - Revisa estos archivos antes de enviar tus cambios: - - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) – Reporte de errores. - - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) – Sugerir características. - - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) – Cambios de documentación. - - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) – Plantilla de PR. + - [bug.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) – Reporte de errores. + - [feature.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) – Sugerir características. + - [documentation-update.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) – Cambios de documentación. + - [PULL_REQUEST_TEMPLATE.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) – Plantilla de PR. - [COMMIT_MESSAGE_GUIDELINES.md](./COMMIT_MESSAGE_GUIDELINES.md) – Guía de mensajes de commit. - [CONTRIBUTING.md](./CONTRIBUTING.md) – Guía en inglés. - - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) – Licencia. - - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) – Proyecto. + - [LICENSE](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/LICENSE.md) – Licencia. + - [README.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/README.md) – Proyecto. ## Contacto -Si tienes preguntas, utiliza [GitHub Discussions](https://github.com/JaKooLit/Hyprland-Dots/discussions) o el [Servidor de Discord](https://discord.gg/kool-tech-world). +Si tienes preguntas, utiliza [GitHub Discussions](https://github.com/LinuxBeginnings/Hyprland-Dots/discussions) o el [Servidor de Discord](https://discord.gg/kool-tech-world). diff --git a/i18n/CONTRIBUTING/CONTRIBUTING.fr.md b/i18n/CONTRIBUTING/CONTRIBUTING.fr.md index 4fd102f7..f3af73e0 100644 --- a/i18n/CONTRIBUTING/CONTRIBUTING.fr.md +++ b/i18n/CONTRIBUTING/CONTRIBUTING.fr.md @@ -5,14 +5,14 @@ Merci de votre intérêt pour la contribution aux Projets Hyprland de KooL ! Nou ## Commencer 1. Forkez le dépôt de la branche de développement sur votre compte GitHub. Cela créera une copie de ce dépôt sur votre compte. Vous pouvez apporter des modifications à cette copie sans affecter le dépôt original. - - Pour forker ce dépôt, cliquez sur le bouton **Fork** dans le coin supérieur droit de cette page ou cliquez [ici](https://github.com/JaKooLit/Hyprland-Dots/fork). + - Pour forker ce dépôt, cliquez sur le bouton **Fork** dans le coin supérieur droit de cette page ou cliquez [ici](https://github.com/LinuxBeginnings/Hyprland-Dots/fork). - Assurez-vous de décocher « Copy the `main` branch only ». Cela copiera la branche de développement ainsi que les autres branches (s'il y en a). 2. Clonez votre dépôt forké sur votre machine locale. - Utilisez la commande suivante pour cloner votre dépôt forké sur votre machine locale : ```bash - git clone --depth=1 -b development https://github.com/JaKooLit/Hyprland-Dots.git + git clone --depth=1 -b development https://github.com/LinuxBeginnings/Hyprland-Dots.git ``` 3. Créez une nouvelle branche pour vos modifications. @@ -54,15 +54,15 @@ Merci de votre intérêt pour la contribution aux Projets Hyprland de KooL ! Nou - Assurez-vous que tous les tests passent ou que l'ensemble soit entièrement testé avant de soumettre vos modifications. - Gardez votre pull request ciblée et évitez d'inclure des changements non liés. - N'oubliez pas de consulter les fichiers suivants avant de soumettre vos modifications : - - [bug.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) - Utilisez ce modèle pour créer un rapport afin de nous aider à nous améliorer. - - [feature.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) - Utilisez ce modèle pour suggérer une fonctionnalité pour ce projet. - - [documentation-update.yml](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) - Utilisez ce modèle pour proposer une modification de la documentation. - - [PULL_REQUEST_TEMPLATE.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) - Utilisez ce modèle pour soumettre une pull request. - - [COMMIT_MESSAGE_GUIDELINES.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md) - Lisez ce fichier pour en savoir plus sur les directives des messages de commit. - - [CONTRIBUTING.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) - Lisez ce fichier pour en savoir plus sur les directives de contribution. - - [LICENSE](https://github.com/JaKooLit/Hyprland-Dots/blob/main/LICENSE.md) - Lisez ce fichier pour en savoir plus sur la licence. - - [README.md](https://github.com/JaKooLit/Hyprland-Dots/blob/main/README.md) - Lisez ce fichier pour en savoir plus sur le projet. + - [bug.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/bug.yml) - Utilisez ce modèle pour créer un rapport afin de nous aider à nous améliorer. + - [feature.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/feature.yml) - Utilisez ce modèle pour suggérer une fonctionnalité pour ce projet. + - [documentation-update.yml](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/ISSUE_TEMPLATE/documentation-update.yml) - Utilisez ce modèle pour proposer une modification de la documentation. + - [PULL_REQUEST_TEMPLATE.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/.github/PULL_REQUEST_TEMPLATE.md) - Utilisez ce modèle pour soumettre une pull request. + - [COMMIT_MESSAGE_GUIDELINES.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/COMMIT_MESSAGE_GUIDELINES.md) - Lisez ce fichier pour en savoir plus sur les directives des messages de commit. + - [CONTRIBUTING.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) - Lisez ce fichier pour en savoir plus sur les directives de contribution. + - [LICENSE](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/LICENSE.md) - Lisez ce fichier pour en savoir plus sur la licence. + - [README.md](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/README.md) - Lisez ce fichier pour en savoir plus sur le projet. ## Contact -Si vous avez des questions, n'hésitez pas à me contacter via les [Discussions GitHub](https://github.com/JaKooLit/Hyprland-Dots/discussions) ou [via le serveur Discord](https://discord.gg/kool-tech-world). \ No newline at end of file +Si vous avez des questions, n'hésitez pas à me contacter via les [Discussions GitHub](https://github.com/LinuxBeginnings/Hyprland-Dots/discussions) ou [via le serveur Discord](https://discord.gg/kool-tech-world). \ No newline at end of file diff --git a/i18n/README/README.de.md b/i18n/README/README.de.md index e097c816..d3b76d7a 100644 --- a/i18n/README/README.de.md +++ b/i18n/README/README.de.md @@ -10,30 +10,30 @@

- +


-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![GitHub Repo stars](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles KooL's Hyprland Dotfiles Showcase - Sparkles + Sparkles

@@ -64,7 +64,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - HINWEIS: Das Paket `curl` muss installiert sein, um die Skripte herunterzuladen ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - Mit dem obigen Befehl kannst du jetzt automatisch die Hyprland Installationsskripte herunterladen und ausführen. @@ -73,19 +73,19 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👁️‍🗨️ Meine Hyprland-Installationsskripte 👁️‍🗨️ - Automatisierte Hyprland-Skripte für ein Distro deiner Wahl. Diese Skripte laden, wenn ben;tigt, meine vorkonfigurierten Dotfiles -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) +- [Fedora-Linux](https://github.com/LinuxBeginnings/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) +- [NixOS](https://github.com/LinuxBeginnings/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) --- @@ -97,18 +97,18 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👀 Screenshots 👀 -- Beispiel Screenshots findest du hier [Screenshots](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- Beispiel Screenshots findest du hier [Screenshots](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Whats new? -- Um Änderungen leicht nachzuvollziehen, werde ich die [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) regelmäßig aktualisieren. Es werden neue Screenshots hinzugefügt, wenn die Änderungen erwähnenswert sind! +- Um Änderungen leicht nachzuvollziehen, werde ich die [CHANGELOGS](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs) regelmäßig aktualisieren. Es werden neue Screenshots hinzugefügt, wenn die Änderungen erwähnenswert sind! > [!NOTE] > Bitte beachte, dass Kools Dots standardmäßig für einen 2K (1440p) Monitor ohne Skalierung angepasst und konfiguriert sind. ### 💥 Kopieren / Installation / Update-Anleitung 💥 -- [`Weiter Infos hier`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`Weiter Infos hier`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Note] > Das Kopierskript "copy.sh" erstellt Backups der zu kopierenden Konfigurationsverzeichnisse. Sollte das Skript fehlschlagen, empfiehlt es sich, manuell ein Backup zu erstellen. - Klone das Repository mit Git, wechsle in das Verzeichnis, mache die Datei ausführbar und führe das Skript aus: @@ -116,14 +116,14 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > Um den Master-Branch herunterzuladen ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` > Um den Entwicklungs-Branch (Development & Testing) herunterzuladen: ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -153,7 +153,7 @@ chmod +x upgrade.sh ## ❗❗❗ DEBIAN AND UBUNTU INFORMATION! -- Ich bekomme eine große Menge an Nachrichten über das Updaten eurer KooL Hyprland dotfiles. Es gibt dazu eine Info im [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- Ich bekomme eine große Menge an Nachrichten über das Updaten eurer KooL Hyprland dotfiles. Es gibt dazu eine Info im [`WIKI`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) #### ⚠️⚠️⚠️ ACHTUNG - SKRIPT-ERSTELLTE BACKUPS @@ -164,7 +164,7 @@ chmod +x upgrade.sh #### 🛎️ kleiner Hinweis zu Hintergrundbildern -- ständardmäßig werden nur einige Hintergründe kopiert (jeweils 1 dunkeles und helles plus 3 weitere). Dir wird angeboten werden, weitere Hintergrundbilder herunterzuladen. Du kannst dir die verfügbaren Hintergründe [`HIER`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) anschauen. +- ständardmäßig werden nur einige Hintergründe kopiert (jeweils 1 dunkeles und helles plus 3 weitere). Dir wird angeboten werden, weitere Hintergrundbilder herunterzuladen. Du kannst dir die verfügbaren Hintergründe [`HIER`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) anschauen. #### ⚠️⚠️⚠️ WICHTIG! Nach dem Kopieren / Der Installation der Dotfiles @@ -172,24 +172,24 @@ chmod +x upgrade.sh - Für Nvidia Benutzer. Stelle sicher, dass du deine `~/.config/hypr/UserConfigs/ENVariables.conf` anpasst (unbedingt empfohlen). -* Für NVIDIA Benutzer, schaue dir diese Informationen [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) an. +* Für NVIDIA Benutzer, schaue dir diese Informationen [`HIER`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) an. - Wenn die bereits deine Keybinds, Monitoren, usw. eingestellt hast... Kopiere die Einstellungen von dem Backup vor dem Logout / Reboot. (empfohlen) #### 📖 Bekannte Probleme und mögliche Lösungen -- Schau dir diese Seite an [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) und checke die [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- Schau dir diese Seite an [FAQ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) und checke die [UNSOLVED ISSUES](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 FRAGEN ?!?! ⁉️ - FAQ! Die Dotfiles funktionieren auch auf anderen Distros! Stelle nur sicher, die richtigen Pakete vorher zu installieren! Falls du dich dann besser fühlst, ich benutze die selbe Konfiguration für mein Gentoo:) - KLEINER HINWEIS! Klicke auf das HINT! Waybar Modul (Notiz, nur in Waybar default und Simple-L [TOP] Layout verfügbar). Kann auch mit der Tastenkombination `SUPER H` gestartet werden -- Weitere Fragen? Klicke hier um das [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) zu durchstöbern. -- Falls du eine ältere Version der Konfiguration haben möchtest, sind diese in meinem "Archive" Repository verfügbar. Siehe [HIER](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Weitere Fragen? Klicke hier um das [WIKI](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) zu durchstöbern. +- Falls du eine ältere Version der Konfiguration haben möchtest, sind diese in meinem "Archive" Repository verfügbar. Siehe [HIER](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Keybinds -- Keybinds [`KLICKE`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Keybinds [`KLICKE`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Hilfe gebraucht @@ -197,7 +197,7 @@ chmod +x upgrade.sh #### ✍️ Contributing -- Möchtest du contributen? Klicke [`HIER`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) für eine Anleitung. +- Möchtest du contributen? Klicke [`HIER`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) für eine Anleitung. #### 🤷‍♂️ TO DO! @@ -220,7 +220,7 @@ chmod +x upgrade.sh oder -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) Oder du kannst auch Krypto an meine btc wallet spenden :) @@ -230,4 +230,4 @@ Oder du kannst auch Krypto an meine btc wallet spenden :) ## 🫰 Vielen Dank für die stars 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) diff --git a/i18n/README/README.fr.md b/i18n/README/README.fr.md index f570a9dc..e5b261f0 100644 --- a/i18n/README/README.fr.md +++ b/i18n/README/README.fr.md @@ -10,30 +10,30 @@

- +


-![Stars du dépôt GitHub](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![Dernier commit GitHub](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![Taille du dépôt GitHub](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![Stars du dépôt GitHub](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![Dernier commit GitHub](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![Taille du dépôt GitHub](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles Démonstration des Dotfiles Hyprland de KooL - Sparkles + Sparkles

@@ -60,7 +60,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - NOTE: vous avez besoin du pacquet `curl` pour que ça fonctionne ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - Vous pouvez utiliser la commande ci-dessus pour cloner automatiquement les scripts d'installation `Distro-Hyprland` @@ -70,20 +70,20 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - Scripts Hyprland automatisés pour la distribution de votre choix, qui importeront ces dotfiles si vous choisissez d'installer ces configurations -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) -- [Fedora-Linux (43/Rawhide)](https://github.com/JaKooLit/Fedora-Hyprland) +- [Fedora-Linux (43/Rawhide)](https://github.com/LinuxBeginnings/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) -- [NixOS (25.05+)](https://github.com/JaKooLit/NixOS-Hyprland) +- [NixOS (25.05+)](https://github.com/LinuxBeginnings/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10 (déprécié)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 (déprécié)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) -- [Ubuntu 25.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.10) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10 (déprécié)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 (déprécié)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) +- [Ubuntu 25.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.10) --- @@ -95,17 +95,17 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👀 Captures d'écran 👀 -- Toutes les captures d'écran sont ici [Captures d'écran](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- Toutes les captures d'écran sont ici [Captures d'écran](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Quoi de neuf ? -- Pour suivre les changements plus facilement, je vais mettre à jour les [CHANGELOGS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Des captures d'écran seront incluses si les modifications en valent la peine ! +- Pour suivre les changements plus facilement, je vais mettre à jour les [CHANGELOGS](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs). Des captures d'écran seront incluses si les modifications en valent la peine ! > [!NOTE] > Veuillez noter que par défaut, les Dots de KooL sont ajustées / configurées pour un affichage en 2k (1440p) sans mise à l'échelle. ### 💥 Instruction de copie / Installation / Mise à jour 💥 -- [`Plus d'infos ici`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`Plus d'infos ici`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Note] > Le script de copie automatique `copy.sh` va créer des sauvegardes des répertoires destinés à être copiés. > Cependant, c'est toujours une bonne idée de faire une sauvegare manuelle au cas où le script n'arriverait pas à sauvegarder votre configuration. @@ -121,7 +121,7 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > Note : Ubuntu est une exception, il y a des branches spécifiques aux versions ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` @@ -129,7 +129,7 @@ cd Hyprland-Dots > Non recommandé pour des systèmes qui ne sont pas pour tester ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -177,7 +177,7 @@ chmod +x upgrade.sh #### 🛎️ une petite note sur les fonds d'écran -- par défaut, seuls quelques fonds d'écran seront copiés (1 sombre et 1 clair plus 3 autres). Il vous sera proposé d'en télécharger plus. Vous pouvez prévisualiser/consulter les fonds d'écran additionnel va [`CE LIEN`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) +- par défaut, seuls quelques fonds d'écran seront copiés (1 sombre et 1 clair plus 3 autres). Il vous sera proposé d'en télécharger plus. Vous pouvez prévisualiser/consulter les fonds d'écran additionnel va [`CE LIEN`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) #### ⚠️⚠️⚠️ INDISPENSABLE ! après avoir copié / installé ces dots @@ -186,26 +186,26 @@ chmod +x upgrade.sh - Utilisateurs de Nvidia. Assurez-vous de modifier vos `~/.config/hypr/UserConfigs/ENVariables.conf` (fortement recommandé). -* Utilisateurs de Nvidia, après l'installation, regardez [`CECI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) +* Utilisateurs de Nvidia, après l'installation, regardez [`CECI`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) - If you have already set your own keybinds, monitors, etc.... Just copy over from backup created before log-out or reboot. (recommended) - Si vous aviez déjà configuré vos propres raccourcis, écrans, etc... Copiez juste depuis les sauvegardes avant de vous déconnecter ou redémarrer. (recommendé) #### 📖 Problèmes connus et solutions possibles -- Allez voir cette page [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) et [PROBLÈMES NON RÉGLÉS](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- Allez voir cette page [FAQ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) et [PROBLÈMES NON RÉGLÉS](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 QUESTIONS ?!?! ⁉️ - FAQ ! Oui, vous pouvez utiliser ces dotfiles sur d'autres distros ! Assurez-vous juste d'installer les paquets nécessaire ! Si ça peut vous rassurer, j'utilise la même configuration sur mon Gentoo :) - ASTUCE RAPIDE ! Cliquez sur le module Waybar "HINT!" (notez qu'il es seulement disponible dans les disposition default et Simple-L [TOP]). Peut aussi être lancé avec le raccourci `SUPER + H` -- Plus de questions ? Cliquez ici pour aller naviguer dans ce [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- If you want the old configs, it is collected on my "Archive" repo. See [HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) -- Si vous voulez les anciennes configurations, elles sont dans mon dépôt "Archive". Aller voir [ICI](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Plus de questions ? Cliquez ici pour aller naviguer dans ce [WIKI](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) +- If you want the old configs, it is collected on my "Archive" repo. See [HERE](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) +- Si vous voulez les anciennes configurations, elles sont dans mon dépôt "Archive". Aller voir [ICI](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Raccourcis clavier -- Raccourcis clavier [`CLIC`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Raccourcis clavier [`CLIC`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Requête spéciale @@ -214,7 +214,7 @@ chmod +x upgrade.sh #### ✍️ Contribuer -- Vous voulez contribuer ? Cliquer [`ICI`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) pour un guide sur les contributions +- Vous voulez contribuer ? Cliquer [`ICI`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) pour un guide sur les contributions > Merci à tous ceux qui ont contribuer du code, ou supporté sur le server Discord. Vos efforts sont grandement appréciés #### 🤷‍♂️ À FAIRE ! @@ -237,7 +237,7 @@ chmod +x upgrade.sh ou -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) Ou vous pouvez donner de la crypto sur mon portefeuille btc :) @@ -247,7 +247,7 @@ Ou vous pouvez donner de la crypto sur mon portefeuille btc :) ## 🫰 Merci pour les stars 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) ### Traductions des documents diff --git a/i18n/README/README.jp.md b/i18n/README/README.jp.md index baa8267e..8aadc00a 100644 --- a/i18n/README/README.jp.md +++ b/i18n/README/README.jp.md @@ -10,30 +10,30 @@

- +


-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![GitHub Repo stars](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles KooL's Hyprland Dotfiles Showcase - Sparkles + Sparkles

@@ -64,7 +64,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - 重要:これを動作させるには、`curl` パッケージが必要です。 ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - 上記のコマンドを使用して、Distro-Hyprland のインストールスクリプトを自動的にクローンできます。 @@ -74,19 +74,19 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - 選択したディストロ向けの自動化された Hyprland スクリプトです。これらの設定をインストールするオプションを選択した場合、対応する dotfiles を取得します。 -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) +- [Fedora-Linux](https://github.com/LinuxBeginnings/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) +- [NixOS](https://github.com/LinuxBeginnings/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (ALPHA STAGE)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) --- @@ -98,18 +98,18 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👀 スクリーンショット 👀 -- すべてのスクリーンショットはここにまとめられています。 [スクリーンショット](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- すべてのスクリーンショットはここにまとめられています。 [スクリーンショット](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 変更点 -- 変更を簡単に追跡できるよう、[変更ログ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) 変更が注目に値する場合はスクリーンショットも含めます! +- 変更を簡単に追跡できるよう、[変更ログ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs) 変更が注目に値する場合はスクリーンショットも含めます! > [注意!] > デフォルトでは、Kools Dots はスケーリングなしの 2K (1440p) ディスプレイ向けに調整・設定されています。 ### 💥 コピー / インストール / アップデート手順 💥 -- [`ここに詳細を記載しています`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`ここに詳細を記載しています`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [注意!] > 自動コピーのスクリプトである "copy.sh" は、コピー対象のディレクトリをバックアップします。しかし、スクリプトがバックアップに失敗する可能性もあるため、手動でバックアップを取るのも良い考えです! - このリポジトリを git でクローンし、ディレクトリを移動して、実行可能にした後、スクリプトを実行してください。 @@ -117,14 +117,14 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > Master ブランチからダウンロードする場合 ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` > 開発ブランチ(Development)からダウンロードする場合(開発およびテスト用) ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -154,7 +154,7 @@ chmod +x upgrade.sh ## ❗❗❗ DEBIAN および UBUNTU ユーザーへの注意! -- KooL Hyprland の dotfiles 更新に関するメッセージが大量に届いています。 [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update)に大きく注意書きを記載しました。 +- KooL Hyprland の dotfiles 更新に関するメッセージが大量に届いています。 [`WIKI`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update)に大きく注意書きを記載しました。 #### ⚠️⚠️⚠️ スクリプトによって作成されたバックアップについての注意 @@ -165,7 +165,7 @@ chmod +x upgrade.sh #### 🛎️ 壁紙に関するちょっとした注意 -- デフォルトでは、ダークとライト各 1 枚+3 枚の壁紙のみがコピーされます。追加の壁紙をダウンロードするオプションが提供されます。追加の壁紙は[`THIS`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) リンクからプレビュー/確認できます。 +- デフォルトでは、ダークとライト各 1 枚+3 枚の壁紙のみがコピーされます。追加の壁紙をダウンロードするオプションが提供されます。追加の壁紙は[`THIS`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) リンクからプレビュー/確認できます。 #### ⚠️⚠️⚠️これらの dotfiles をコピー / インストールした後の必須事項 @@ -173,24 +173,24 @@ chmod +x upgrade.sh - NVIDIA の所有者へ。`~/.config/hypr/UserConfigs/ENVariables.conf`を編集してください(強く推奨)。 -* NVIDIA の所有者とユーザーへ。 インsトール後に [`THIS`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)を確認してください。 +* NVIDIA の所有者とユーザーへ。 インsトール後に [`THIS`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users)を確認してください。 - 既に独自のキー設定やモニター設定を行っている場合は、ログアウトや再起動前に作成されたバックアップからコピーしてください。(推奨) #### 📖 既知の問題と可能な解決策 -- こちらのページを確認してください: [FAQ](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) & [UNSOLVED ISSUES](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- こちらのページを確認してください: [FAQ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) & [UNSOLVED ISSUES](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 質問対応 ⁉️ - FAQ! はい、これらの dotfiles は他のディストロでも使用できます!ただし、適切なパッケージを事前にインストールしてください!安心できるなら、私も Gentoo で同じ設定を使っています :) - クイックヒント! Waybar モジュールの HINT! をクリックしてください。 (Waybar のデフォルトレイアウトおよび Simple-L [TOP] レイアウトでのみ利用可能)。キーバインドの `SUPER H`でも起動できます。 -- さらに質問がありますか? こちらをクリックして [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/)を参照してください。 -- 旧設定が欲しい場合, すべて "Archive" リポジトリにまとめています。詳しくは[HERE](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive)をご覧ください。 +- さらに質問がありますか? こちらをクリックして [WIKI](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/)を参照してください。 +- 旧設定が欲しい場合, すべて "Archive" リポジトリにまとめています。詳しくは[HERE](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive)をご覧ください。 #### ⌨ キーバインド -- キーバインドの説明はこちら: [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- キーバインドの説明はこちら: [`CLICK`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 スペシャルリクエスト @@ -218,7 +218,7 @@ chmod +x upgrade.sh または -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) また、BTC での寄付も可能です @@ -228,4 +228,4 @@ chmod +x upgrade.sh ## 🫰 スターありがとう 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) diff --git a/i18n/README/README.ro.md b/i18n/README/README.ro.md index f1066394..b521ad56 100644 --- a/i18n/README/README.ro.md +++ b/i18n/README/README.ro.md @@ -10,7 +10,7 @@

- +

@@ -18,23 +18,23 @@

 Instalare 
  
 Youtube 
   -
 Wiki 
   -
 Discuții 
   -
 Comenzi rapide 
   +
 Wiki 
   +
 Discuții 
   +
 Comenzi rapide 
  
 Discord 

-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![GitHub Repo stars](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles Prezentarea fișierelor Dotfiles Hyprland ale lui KooL - Sparkles + Sparkles

@@ -60,7 +60,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - NOTĂ: ai nevoie de pachetul `curl` pentru ca aceasta să funcționeze ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - acum poți folosi comanda de mai sus pentru a clona automat scripturile de instalare Distro-Hyprland de mai jos @@ -69,14 +69,14 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👁️‍🗨️ Scripturile mele de instalare Hyprland 👁️‍🗨️ - Scripturi automate Hyprland pentru distribuția aleasă, care vor descărca aceste dotfiles dacă optezi pentru instalarea acestor configurații -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (FAZĂ ALPHA)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/LinuxBeginnings/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) +- [NixOS](https://github.com/LinuxBeginnings/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (FAZĂ ALPHA)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) --- @@ -86,16 +86,16 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - Acest repo va fi descărcat de scripturile de instalare Distro-Hyprland de mai sus dacă optezi pentru descărcarea dotfiles-urilor pre-configurate ### 👀 Capturi de ecran 👀 -- Toate capturile de ecran sunt colectate aici [Capturi de ecran](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- Toate capturile de ecran sunt colectate aici [Capturi de ecran](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Ce mai e nou? -- Pentru a urmări ușor modificările, voi actualiza [Jurnalul de modificări](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Capturile de ecran vor fi incluse dacă modificările merită menționate! +- Pentru a urmări ușor modificările, voi actualiza [Jurnalul de modificări](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs). Capturile de ecran vor fi incluse dacă modificările merită menționate! > [!NOTĂ] > Reține că, în mod implicit, dotfiles-urile lui Kool sunt ajustate/configurate pentru afișaje 2k (1440p) fără scalare. ### 💥 Instrucțiuni de copiere / instalare / actualizare 💥 -- [`MAI MULTE INFORMAȚII AICI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`MAI MULTE INFORMAȚII AICI`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Notă] > Scriptul automat de copiere „copy.sh” va crea copii de rezervă ale directoarelor care urmează să fie copiate. Totuși, este o idee bună să faci manual o copie de rezervă, în caz că scriptul nu reușește să o facă! @@ -103,13 +103,13 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > pentru a descărca din ramura Master ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` > pentru a descărca din ramura Development (dezvoltare și testare) ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -135,7 +135,7 @@ chmod +x upgrade.sh ``` ## ❗❗❗ ATENȚIE PENTRU UTILIZATORII DEBIAN ȘI UBUNTU! -- Primesc o mulțime de mesaje despre actualizarea dotfiles-urilor Hyprland ale lui KooL. Am făcut o notă mare în [`WIKI`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- Primesc o mulțime de mesaje despre actualizarea dotfiles-urilor Hyprland ale lui KooL. Am făcut o notă mare în [`WIKI`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) #### ⚠️⚠️⚠️ ATENȚIE - COPII DE REZERVĂ CREATE DE SCRIPT > [!ATENȚIE] @@ -144,33 +144,33 @@ chmod +x upgrade.sh > Șterge manual toate copiile de rezervă de care nu ai nevoie #### 🛎️ o mică notă despre imagini de fundal -- în mod implicit, doar câteva imagini de fundal vor fi copiate (1 pentru modul întunecat și deschis, plus încă 3). Ți se va oferi opțiunea de a descărca mai multe imagini de fundal. Poți previzualiza/verifica imaginile de fundal suplimentare de la [`ACEST`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) Link +- în mod implicit, doar câteva imagini de fundal vor fi copiate (1 pentru modul întunecat și deschis, plus încă 3). Ți se va oferi opțiunea de a descărca mai multe imagini de fundal. Poți previzualiza/verifica imaginile de fundal suplimentare de la [`ACEST`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) Link #### ⚠️⚠️⚠️ OBLIGATORIU! după copierea / instalarea acestor dotfiles + Apasă SUPER W și setează o imagine de fundal. Aceasta este și pentru a inițializa wallust pentru temele waybar, kitty (tty) și rofi. Totuși, dacă folosești copy.sh sau release.sh, va exista o imagine de fundal inițială presetată și nu va trebui să faci asta + Proprietari de Nvidia. Asigură-te că editezi `~/.config/hypr/UserConfigs/ENVariables.conf` (foarte recomandat). -- Utilizatori / proprietari de Nvidia, după instalare, verifică [`ACESTA`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) +- Utilizatori / proprietari de Nvidia, după instalare, verifică [`ACESTA`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + Dacă ți-ai setat deja propriile comenzi rapide, monitoare etc., doar copiază-le din copia de rezervă creată înainte de a te deconecta sau reporni. (recomandat) #### 📖 Probleme cunoscute și posibile soluții -- verifică această pagină [Întrebări frecvente](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) și [PROBLEME NESOLUȚIONATE](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- verifică această pagină [Întrebări frecvente](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) și [PROBLEME NESOLUȚIONATE](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 ÎNTREBĂRI ?!?! ⁉️ - Întrebări frecvente! Da, poți folosi aceste dotfiles pe alte distribuții! Asigură-te doar că instalezi pachetele corespunzătoare mai întâi! Dacă te face să te simți mai bine, folosesc aceeași configurație pe Gentoo-ul meu :) - SFAT RAPID! Apasă pe modulul HINT! din Waybar (notă: disponibil doar în layout-urile Waybar implicit și Simple-L [SUS]). Poate fi lansat cu comanda rapidă `SUPER H` -- Mai multe întrebări? click aici pentru a răsfoi acest [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Dacă vrei vechile configurații, acestea sunt colectate în repo-ul meu „Archive”. Vezi [AICI](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Mai multe întrebări? click aici pentru a răsfoi acest [WIKI](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) +- Dacă vrei vechile configurații, acestea sunt colectate în repo-ul meu „Archive”. Vezi [AICI](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Comenzi rapide -- Comenzi rapide [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Comenzi rapide [`CLICK`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Cerere specială - Dacă ai îmbunătățiri pentru dotfiles sau configurații, nu ezita să trimiți un PR pentru îmbunătățiri. Întotdeauna primesc cu bucurie îmbunătățiri, deoarece și eu învăț, la fel ca voi! #### ✍️ Contribuții -- Vrei să contribui? Click [`AICI`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) pentru un ghid despre cum să contribui +- Vrei să contribui? Click [`AICI`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) pentru un ghid despre cum să contribui #### 🤷‍♂️ DE FĂCUT! - [ ] Ajustarea dotfiles-urilor - 🚧 în progres constant @@ -190,7 +190,7 @@ chmod +x upgrade.sh sau -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) Sau poți dona criptomonede pe portofelul meu btc :) > 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i @@ -198,4 +198,4 @@ Sau poți dona criptomonede pe portofelul meu btc :) ![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) ## 🫰 Mulțumesc pentru stele 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) diff --git a/i18n/README/README.ru.md b/i18n/README/README.ru.md index c71b0df7..3e56a401 100644 --- a/i18n/README/README.ru.md +++ b/i18n/README/README.ru.md @@ -10,30 +10,30 @@

- +


-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![GitHub Repo stars](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles Демонстрация Dotfiles Hyprland от KooL - Sparkles + Sparkles

@@ -59,7 +59,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - ПРИМЕЧАНИЕ: для работы требуется пакет `curl` ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - теперь вы можете использовать приведённую выше команду для автоматического клонирования скриптов установки Distro-Hyprland, указанных ниже @@ -68,14 +68,14 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👁️‍🗨️ Мои скрипты установки Hyprland 👁️‍🗨️ - Автоматические скрипты Hyprland для выбранного дистрибутива, которые загрузят эти dotfiles, если вы выберете установку этих конфигураций -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (АЛЬФА-СТАДИЯ)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/LinuxBeginnings/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) +- [NixOS](https://github.com/LinuxBeginnings/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (АЛЬФА-СТАДИЯ)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) --- @@ -85,16 +85,16 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - Этот репозиторий будет загружен скриптами установки Distro-Hyprland, указанными выше, если вы выберете загрузку предварительно настроенных dotfiles ### 👀 Скриншоты 👀 -- Все скриншоты собраны здесь [Скриншоты](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- Все скриншоты собраны здесь [Скриншоты](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Что нового? -- Чтобы легко отслеживать изменения, я буду обновлять [Журнал изменений](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скриншоты будут включены, если изменения заслуживают упоминания! +- Чтобы легко отслеживать изменения, я буду обновлять [Журнал изменений](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs). Скриншоты будут включены, если изменения заслуживают упоминания! > [!ПРИМЕЧАНИЕ] > Обратите внимание, что по умолчанию dotfiles от KooL настроены для дисплеев 2k (1440p) без масштабирования. ### 💥 Инструкции по копированию / установке / обновлению 💥 -- [`БОЛЬШЕ ИНФОРМАЦИИ ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`БОЛЬШЕ ИНФОРМАЦИИ ЗДЕСЬ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Примечание] > Автоматический скрипт копирования „copy.sh“ создаёт резервные копии директорий, которые будут скопированы. Тем не менее, рекомендуется сделать резервную копию вручную на случай, если скрипт не сможет этого сделать! @@ -102,13 +102,13 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > для загрузки из ветки Master ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` > для загрузки из ветки Development (разработка и тестирование) ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -134,7 +134,7 @@ chmod +x upgrade.sh ``` ## ❗❗❗ ВНИМАНИЕ ДЛЯ ПОЛЬЗОВАТЕЛЕЙ DEBIAN И UBUNTU! -- Я получаю огромное количество сообщений об обновлении dotfiles Hyprland от KooL. Я сделал большую заметку в [`ВИКИ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- Я получаю огромное количество сообщений об обновлении dotfiles Hyprland от KooL. Я сделал большую заметку в [`ВИКИ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) #### ⚠️⚠️⚠️ ВНИМАНИЕ - РЕЗЕРВНЫЕ КОПИИ, СОЗДАННЫЕ СКРИПТОМ > [!ВНИМАНИЕ] @@ -143,33 +143,33 @@ chmod +x upgrade.sh > Удалите вручную все ненужные резервные копии #### 🛎️ Небольшое замечание об обоях -- по умолчанию копируется только несколько обоев (по 1 для тёмного и светлого режима, плюс ещё 3). Вам будет предложено загрузить дополнительные обои. Вы можете просмотреть/проверить дополнительные обои по [`ЭТОЙ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) ссылке +- по умолчанию копируется только несколько обоев (по 1 для тёмного и светлого режима, плюс ещё 3). Вам будет предложено загрузить дополнительные обои. Вы можете просмотреть/проверить дополнительные обои по [`ЭТОЙ`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) ссылке #### ⚠️⚠️⚠️ ОБЯЗАТЕЛЬНО! после копирования / установки этих dotfiles + Нажмите SUPER W и установите обои. Это также необходимо для инициализации wallust для тем waybar, kitty (tty) и rofi. Однако, если вы используете copy.sh или release.sh, начальные обои уже будут установлены, и этого делать не придётся + Владельцы Nvidia. Обязательно отредактируйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настоятельно рекомендуется). -- Пользователи / владельцы Nvidia, после установки проверьте [`ЭТО`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) +- Пользователи / владельцы Nvidia, после установки проверьте [`ЭТО`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + Если вы уже настроили свои горячие клавиши, мониторы и т.д., просто скопируйте их из созданной резервной копии перед выходом из системы или перезагрузкой. (рекомендуется) #### 📖 Известные проблемы и возможные решения -- ознакомьтесь с этой страницей [Часто задаваемые вопросы](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) и [НЕРЕШЁННЫЕ ПРОБЛЕМЫ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- ознакомьтесь с этой страницей [Часто задаваемые вопросы](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) и [НЕРЕШЁННЫЕ ПРОБЛЕМЫ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 ВОПРОСЫ ?!?! ⁉️ - Часто задаваемые вопросы! Да, вы можете использовать эти dotfiles на других дистрибутивах! Просто убедитесь, что сначала установлены соответствующие пакеты! Если вам от этого легче, я использую ту же конфигурацию на моём Gentoo :) - БЫСТРЫЙ СОВЕТ! Нажмите на модуль HINT! в Waybar (примечание: доступно только в стандартном и Simple-L [ВЕРХНЕМ] макете Waybar). Можно запустить с помощью горячей клавиши `SUPER H` -- Ещё вопросы? щёлкните здесь, чтобы просмотреть эту [ВИКИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Если вам нужны старые конфигурации, они собраны в моём репозитории „Archive“. Смотрите [ЗДЕСЬ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Ещё вопросы? щёлкните здесь, чтобы просмотреть эту [ВИКИ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) +- Если вам нужны старые конфигурации, они собраны в моём репозитории „Archive“. Смотрите [ЗДЕСЬ](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Горячие клавиши -- Горячие клавиши [`ЩЁЛКНИТЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Горячие клавиши [`ЩЁЛКНИТЕ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Особая просьба - Если у вас есть улучшения для dotfiles или конфигураций, не стесняйтесь отправить PR для улучшений. Я всегда приветствую улучшения, так как тоже учусь, как и вы! #### ✍️ Вклад -- Хотите внести вклад? Щёлкните [`ЗДЕСЬ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для руководства по внесению вклада +- Хотите внести вклад? Щёлкните [`ЗДЕСЬ`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) для руководства по внесению вклада #### 🤷‍♂️ ЧТО ДЕЛАТЬ! - [ ] Настройка dotfiles - 🚧 в постоянном прогрессе @@ -189,7 +189,7 @@ chmod +x upgrade.sh или -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) Или вы можете пожертвовать криптовалюту на мой btc-кошелёк :) > 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i @@ -197,4 +197,4 @@ chmod +x upgrade.sh ![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) ## 🫰 Спасибо за звёзды 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) diff --git a/i18n/README/README.ua.md b/i18n/README/README.ua.md index 7ef6922a..79e608bf 100644 --- a/i18n/README/README.ua.md +++ b/i18n/README/README.ua.md @@ -10,30 +10,30 @@

- +


-![GitHub Repo stars](https://img.shields.io/github/stars/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/JaKooLit/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/JaKooLit/Hyprland-Dots?style=for-the-badge&color=cba6f7) +![GitHub Repo stars](https://img.shields.io/github/stars/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7) ![GitHub last commit](https://img.shields.io/github/last-commit/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=b4befe) ![GitHub repo size](https://img.shields.io/github/repo-size/LinuxBeginnings/Hyprland-Dots?style=for-the-badge&color=cba6f7)

- Sparkles + Sparkles Презентація Dotfiles Hyprland від KooL - Sparkles + Sparkles

@@ -59,7 +59,7 @@ https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872 - ПРИМІТКА: для роботи потрібен пакет `curl` ```bash -sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distro-Hyprland.sh) +sh <(curl -L https://raw.githubusercontent.com/LinuxBeginnings/Hyprland-Dots/main/Distro-Hyprland.sh) ``` - тепер ви можете використовувати наведену вище команду для автоматичного клонування скриптів встановлення Distro-Hyprland, зазначених нижче @@ -68,14 +68,14 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr ### 👁️‍🗨️ Мої скрипти встановлення Hyprland 👁️‍🗨️ - Автоматичні скрипти Hyprland для обраного дистрибутива, які завантажать ці dotfiles, якщо ви оберете встановлення цих конфігурацій -- [Arch-Linux](https://github.com/JaKooLit/Arch-Hyprland) -- [OpenSUSE(Tumbleweed)](https://github.com/JaKooLit/OpenSuse-Hyprland) -- [Fedora-Linux](https://github.com/JaKooLit/Fedora-Hyprland) -- [Debian-Linux (Trixie & SID)](https://github.com/JaKooLit/Debian-Hyprland) -- [NixOS](https://github.com/JaKooLit/NixOS-Hyprland) -- [Ubuntu 24.04 LTS](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.04) -- [Ubuntu 24.10](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/24.10) -- [Ubuntu 25.04 - (АЛЬФА-ЕТАП)](https://github.com/JaKooLit/Ubuntu-Hyprland/tree/25.04) +- [Arch-Linux](https://github.com/LinuxBeginnings/Arch-Hyprland) +- [OpenSUSE(Tumbleweed)](https://github.com/LinuxBeginnings/OpenSuse-Hyprland) +- [Fedora-Linux](https://github.com/LinuxBeginnings/Fedora-Hyprland) +- [Debian-Linux (Trixie & SID)](https://github.com/LinuxBeginnings/Debian-Hyprland) +- [NixOS](https://github.com/LinuxBeginnings/NixOS-Hyprland) +- [Ubuntu 24.04 LTS](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.04) +- [Ubuntu 24.10](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/24.10) +- [Ubuntu 25.04 - (АЛЬФА-ЕТАП)](https://github.com/LinuxBeginnings/Ubuntu-Hyprland/tree/25.04) --- @@ -85,16 +85,16 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr - Цей репозиторій буде завантажено скриптами встановлення Distro-Hyprland, зазначеними вище, якщо ви оберете завантаження попередньо налаштованих dotfiles ### 👀 Скріншоти 👀 -- Усі скріншоти зібрано тут [Скріншоти](https://github.com/JaKooLit/screenshots/tree/main/Hyprland-ScreenShots) +- Усі скріншоти зібрано тут [Скріншоти](https://github.com/LinuxBeginnings/screenshots/tree/main/Hyprland-ScreenShots) ### 📦 Що нового? -- Щоб легко відстежувати зміни, я оновлюватиму [Журнал змін](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs). Скріншоти будуть додані, якщо зміни варті згадки! +- Щоб легко відстежувати зміни, я оновлюватиму [Журнал змін](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Changelogs). Скріншоти будуть додані, якщо зміни варті згадки! > [!ПРИМІТКА] > Зверніть увагу, що за замовчуванням dotfiles від KooL налаштовані для дисплеїв 2k (1440p) без масштабування. ### 💥 Інструкції з копіювання / встановлення / оновлення 💥 -- [`БІЛЬШЕ ІНФОРМАЦІЇ ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- [`БІЛЬШЕ ІНФОРМАЦІЇ ТУТ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) > [!Примітака] > Автоматичний скрипт копіювання „copy.sh“ створює резервні копії директорій, які будуть скопійовані. Проте рекомендується зробити резервну копію вручну на випадок, якщо скрипт не зможе цього зробити! @@ -102,13 +102,13 @@ sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Hyprland-Dots/main/Distr > для завантаження з гілки Master ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git cd Hyprland-Dots ``` > для завантаження з гілки Development (розробка та тестування) ```bash -git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots.git -b development +git clone --depth=1 https://github.com/LinuxBeginnings/Hyprland-Dots.git -b development cd Hyprland-Dots ``` @@ -134,7 +134,7 @@ chmod +x upgrade.sh ``` ## ❗❗❗ УВАГА ДЛЯ КОРИСТУВАЧІВ DEBIAN ТА UBUNTU! -- Я отримую величезну кількість повідомлень щодо оновлення dotfiles Hyprland від KooL. Я зробив велику примітку у [`ВІКІ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Install_&_Update) +- Я отримую величезну кількість повідомлень щодо оновлення dotfiles Hyprland від KooL. Я зробив велику примітку у [`ВІКІ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Install_&_Update) #### ⚠️⚠️⚠️ УВАГА - РЕЗЕРВНІ КОПІЇ, СТВОРЕНІ СКРИПТОМ > [!УВАГА] @@ -143,33 +143,33 @@ chmod +x upgrade.sh > Видаліть вручну всі непотрібні резервні копії #### 🛎️ Невелика примітка про шпалери -- за замовчуванням копіюється лише кілька шпалер (по 1 для темного та світлого режиму, плюс ще 3). Вам буде запропоновано завантажити додаткові шпалери. Ви можете переглянути/перевірити додаткові шпалери за [`ЦИМ`](https://github.com/JaKooLit/Wallpaper-Bank/tree/main/wallpapers) посиланням +- за замовчуванням копіюється лише кілька шпалер (по 1 для темного та світлого режиму, плюс ще 3). Вам буде запропоновано завантажити додаткові шпалери. Ви можете переглянути/перевірити додаткові шпалери за [`ЦИМ`](https://github.com/LinuxBeginnings/Wallpaper-Bank/tree/main/wallpapers) посиланням #### ⚠️⚠️⚠️ ОБОВ’ЯЗКОВО! після копіювання / встановлення цих dotfiles + Натисніть SUPER W і встановіть шпалери. Це також необхідно для ініціалізації wallust для тем waybar, kitty (tty) і rofi. Однак, якщо ви використовуєте copy.sh або release.sh, початкові шпалери вже будуть встановлені, і цього робити не доведеться + Власники Nvidia. Обов’язково відредагуйте `~/.config/hypr/UserConfigs/ENVariables.conf` (настійно рекомендується). -- Користувачі / власники Nvidia, після встановлення перевірте [`ЦЕ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) +- Користувачі / власники Nvidia, після встановлення перевірте [`ЦЕ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Notes_to_remember#--for-nvidia-gpu-users) + Якщо ви вже налаштували власні гарячі клавіші, монітори тощо, просто скопіюйте їх із створеної резервної копії перед виходом із системи або перезавантаженням. (рекомендується) #### 📖 Відомі проблеми та можливі рішення -- перегляньте цю сторінку [Поширені запитання](https://github.com/JaKooLit/Hyprland-Dots/wiki/FAQ) та [НЕРОЗВ’ЯЗАНІ ПРОБЛЕМИ](https://github.com/JaKooLit/Hyprland-Dots/wiki/Known_Issues) +- перегляньте цю сторінку [Поширені запитання](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/FAQ) та [НЕРОЗВ’ЯЗАНІ ПРОБЛЕМИ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Known_Issues) #### 🙋 ЗАПИТАННЯ ?!?! ⁉️ - Поширені запитання! Так, ви можете використовувати ці dotfiles на інших дистрибутивах! Просто переконайтеся, що спочатку встановлено відповідні пакети! Якщо вам від цього легше, я використовую ту саму конфігурацію на моєму Gentoo :) - ШВИДКА ПОРАДА! Натисніть на модуль HINT! у Waybar (примітка: доступно лише у стандартному та Simple-L [ВЕРХНЬОМУ] макеті Waybar). Можна запустити за допомогою гарячої клавіші `SUPER H` -- Ще запитання? натисніть тут, щоб переглянути цю [ВІКІ](https://github.com/JaKooLit/Hyprland-Dots/wiki/) -- Якщо вам потрібні старі конфігурації, вони зібрані в моєму репозиторії „Archive“. Дивіться [ТУТ](https://github.com/JaKooLit/Hyprland-Dots-releases-Archive) +- Ще запитання? натисніть тут, щоб переглянути цю [ВІКІ](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/) +- Якщо вам потрібні старі конфігурації, вони зібрані в моєму репозиторії „Archive“. Дивіться [ТУТ](https://github.com/LinuxBeginnings/Hyprland-Dots-releases-Archive) #### ⌨ Гарячі клавіші -- Гарячі клавіші [`КЛІКНІТЬ`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) +- Гарячі клавіші [`КЛІКНІТЬ`](https://github.com/LinuxBeginnings/Hyprland-Dots/wiki/Keybinds) #### 🙏 Особливе прохання - Якщо у вас є покращення для dotfiles або конфігурацій, не соромтеся надіслати PR для покращень. Я завжди вітаю покращення, адже я також вчуся, як і ви! #### ✍️ Внесок -- Хочете зробити внесок? Клікніть [`ТУТ`](https://github.com/JaKooLit/Hyprland-Dots/blob/main/CONTRIBUTING.md) для посібника зі внесення внеску +- Хочете зробити внесок? Клікніть [`ТУТ`](https://github.com/LinuxBeginnings/Hyprland-Dots/blob/main/CONTRIBUTING.md) для посібника зі внесення внеску #### 🤷‍♂️ ЩО РОБИТИ! - [ ] Налаштування dotfiles - 🚧 у постійному прогресі @@ -189,7 +189,7 @@ chmod +x upgrade.sh або -[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/JaKooLit) +[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/LinuxBeginnings) Або ви можете пожертвувати криптовалюту на мій btc-гаманець :) > 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i @@ -197,4 +197,4 @@ chmod +x upgrade.sh ![Bitcoin](https://github.com/user-attachments/assets/7ed32f8f-c499-46f0-a53c-3f6fbd343699) ## 🫰 Дякую за зірки 🩷 -[![Stargazers over time](https://starchart.cc/JaKooLit/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/JaKooLit/Hyprland-Dots) +[![Stargazers over time](https://starchart.cc/LinuxBeginnings/Hyprland-Dots.svg?variant=adaptive)](https://starchart.cc/LinuxBeginnings/Hyprland-Dots) -- cgit v1.2.3 From 7a7334f1ce95ea946506b37193ef4fb71f8f6744 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 19 Feb 2026 01:01:59 -0500 Subject: Added config files for waybar-weather Added settinmgs to toggle C/F On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md renamed: update-dots.sh -> archive/update-dots.sh modified: config/hypr/scripts/Kool_Quick_Settings.sh new file: config/hypr/scripts/Toggle-weather-waybar-units.sh new file: config/waybar-weather/cityname.txt new file: config/waybar-weather/config.toml new file: config/waybar-weather/geolocation.txt modified: copy.sh --- CHANGELOG.md | 9 +- archive/update-dots.sh | 81 ++++++++++ config/hypr/scripts/Kool_Quick_Settings.sh | 2 + config/hypr/scripts/Toggle-weather-waybar-units.sh | 33 ++++ config/waybar-weather/cityname.txt | 13 ++ config/waybar-weather/config.toml | 176 +++++++++++++++++++++ config/waybar-weather/geolocation.txt | 13 ++ copy.sh | 41 +++++ update-dots.sh | 81 ---------- 9 files changed, 367 insertions(+), 82 deletions(-) create mode 100755 archive/update-dots.sh create mode 100755 config/hypr/scripts/Toggle-weather-waybar-units.sh create mode 100644 config/waybar-weather/cityname.txt create mode 100644 config/waybar-weather/config.toml create mode 100644 config/waybar-weather/geolocation.txt delete mode 100755 update-dots.sh (limited to 'config/hypr/scripts') diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a312758..332c6f67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ ## v2.3.21 -- Update look of `fastfetch` compact config file +- Updated `waybar-weather` + - Created default files in `.config/waybar-weather` + - You can manually override settings or providers + - The defaults should work for most users + - Added question during install to set `metric` or `imperial` Temp units + - Added Menu item is Quick Settings to toggle units + - Note: After changing units click on the weather widget to update units +- Updated look of `fastfetch` compact config file - Fixed no tooltips when `waybar cava` running - Thank you Max Gangel for the fix! - Added check for `rsync` in `copy.sh` diff --git a/archive/update-dots.sh b/archive/update-dots.sh new file mode 100755 index 00000000..84bd7611 --- /dev/null +++ b/archive/update-dots.sh @@ -0,0 +1,81 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' + +if [[ -t 1 ]]; then + BOLD="$(tput bold || true)" + DIM="$(tput dim || true)" + RED="$(tput setaf 1 || true)" + GREEN="$(tput setaf 2 || true)" + YELLOW="$(tput setaf 3 || true)" + BLUE="$(tput setaf 4 || true)" + RESET="$(tput sgr0 || true)" +else + BOLD=""; DIM=""; RED=""; GREEN=""; YELLOW=""; BLUE=""; RESET="" +fi + +log() { printf "%b\n" "${BLUE}==>${RESET} $*"; } +ok() { printf "%b\n" "${GREEN}✔${RESET} $*"; } +warn() { printf "%b\n" "${YELLOW}⚠${RESET} $*"; } +err() { printf "%b\n" "${RED}✖${RESET} $*"; } + +log "${BOLD}Hyprland-Dots updater${RESET}" + +if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then + err "Not inside a git repository." + exit 1 +fi + +branch="$(git rev-parse --abbrev-ref HEAD)" +if [[ "$branch" == "HEAD" ]]; then + warn "Detached HEAD state detected." +fi + +log "Fetching remote updates..." +git fetch --tags --quiet + +upstream="" +if git rev-parse --abbrev-ref --symbolic-full-name "@{u}" >/dev/null 2>&1; then + upstream="$(git rev-parse --abbrev-ref --symbolic-full-name "@{u}")" +else + if git show-ref --verify --quiet "refs/remotes/origin/${branch}"; then + upstream="origin/${branch}" + fi +fi + +if [[ -z "$upstream" ]]; then + err "No upstream found for branch '${branch}'." + exit 1 +fi + +log "Current branch: ${BOLD}${branch}${RESET}" +log "Upstream: ${BOLD}${upstream}${RESET}" + +behind_count="$(git rev-list --count "HEAD..${upstream}")" +ahead_count="$(git rev-list --count "${upstream}..HEAD")" + +if [[ "$behind_count" -eq 0 ]]; then + ok "Already up to date with ${upstream}." + if [[ "$ahead_count" -gt 0 ]]; then + warn "Local branch is ahead by ${ahead_count} commit(s)." + fi + exit 0 +fi + +warn "Updates available: behind by ${behind_count} commit(s)." +read -r -p "Update now? [y/N] " reply +case "${reply:-}" in + y|Y|yes|YES) + log "Stashing local changes..." + git stash -u + + log "Pulling latest changes from ${upstream}..." + git pull + + ok "Update complete." + printf "%b\n" "${DIM}Next: run ./copy.sh to upgrade the Hyprland dotfiles.${RESET}" + ;; + *) + warn "Update cancelled." + ;; +esac diff --git a/config/hypr/scripts/Kool_Quick_Settings.sh b/config/hypr/scripts/Kool_Quick_Settings.sh index 2e4004c5..5081fe72 100755 --- a/config/hypr/scripts/Kool_Quick_Settings.sh +++ b/config/hypr/scripts/Kool_Quick_Settings.sh @@ -202,6 +202,7 @@ Choose Hyprland Animations Choose Monitor Profiles Choose Rofi Themes Search for Keybinds +Toggle Waybar Weather units (C/F) Toggle Game Mode Switch Dark-Light Theme Rainbow Borders Mode @@ -263,6 +264,7 @@ main() { "Choose Monitor Profiles") $scriptsDir/MonitorProfiles.sh ;; "Choose Rofi Themes") $scriptsDir/RofiThemeSelector.sh ;; "Search for Keybinds") $scriptsDir/KeyBinds.sh ;; + "Toggle Waybar Weather units (C/F)") $scriptsDir/Toggle-weather-waybar-units.sh ;; "Toggle Game Mode") $scriptsDir/GameMode.sh ;; "Switch Dark-Light Theme") $scriptsDir/DarkLight.sh ;; "Rainbow Borders Mode") rainbow_borders_menu ;; diff --git a/config/hypr/scripts/Toggle-weather-waybar-units.sh b/config/hypr/scripts/Toggle-weather-waybar-units.sh new file mode 100755 index 00000000..4007536c --- /dev/null +++ b/config/hypr/scripts/Toggle-weather-waybar-units.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +# Toggle waybar-weather units between metric and imperial + +CONFIG_FILE="$HOME/.config/waybar-weather/config.toml" + +if [ ! -f "$CONFIG_FILE" ]; then + notify-send "Weather units" "Config not found: $CONFIG_FILE" + exit 1 +fi + +# Determine current units (default to metric when unset/commented) +current_units="metric" +if grep -qE '^[[:space:]]*units[[:space:]]*=' "$CONFIG_FILE"; then + current_units=$(sed -nE 's/^[[:space:]]*units[[:space:]]*=[[:space:]]*"([^"]+)".*/\1/p' "$CONFIG_FILE" | head -n1) +fi + +if [ "$current_units" = "imperial" ]; then + new_units="metric" +else + new_units="imperial" +fi + +# Update config: prefer replacing existing units line, otherwise uncomment default, else append +if grep -qE '^[[:space:]]*units[[:space:]]*=' "$CONFIG_FILE"; then + sed -i 's/^[[:space:]]*units[[:space:]]*=.*/units = "'"$new_units"'"/' "$CONFIG_FILE" +elif grep -qE '^[[:space:]]*#\s*units[[:space:]]*=' "$CONFIG_FILE"; then + sed -i 's/^[[:space:]]*#\s*units[[:space:]]*=.*/units = "'"$new_units"'"/' "$CONFIG_FILE" +else + printf '\nunits = "%s"\n' "$new_units" >> "$CONFIG_FILE" +fi + +pkill waybar-weather 2>/dev/null || true +notify-send "Weather units now ${new_units}" "Click on waybar-weather to update units" diff --git a/config/waybar-weather/cityname.txt b/config/waybar-weather/cityname.txt new file mode 100644 index 00000000..c9a67422 --- /dev/null +++ b/config/waybar-weather/cityname.txt @@ -0,0 +1,13 @@ +## SPDX-FileCopyrightText: Winni Neessen +## +## SPDX-License-Identifier: MIT +## +## Example file for the cityname_file geobus provider +## This provider is based on a simple file containing a , pair +## pointing towards the desired location. +## +## The geolocation file must be placed in the waybar-weather config directory: +## ~/.config/waybar-weather/cityname +## +## The following coordinates point towards coordinates: 37.332806,-122.005371 +Apple Park Cupertino, California \ No newline at end of file diff --git a/config/waybar-weather/config.toml b/config/waybar-weather/config.toml new file mode 100644 index 00000000..7a7b9b28 --- /dev/null +++ b/config/waybar-weather/config.toml @@ -0,0 +1,176 @@ +# SPDX-FileCopyrightText: Winni Neessen +# +# SPDX-License-Identifier: MIT + +## ============================================================================= +## General Configuration +## ============================================================================= + +## Measurement system used for weather data. +## Allowed values: "metric", "imperial" +## Default: "metric" +# +# units = "metric" + +## Locale used for geolocation and formatting. +## If unset, the locale may be determined automatically from the environment. +# +# locale = "en-US" + +## Log verbosity level. +## Supported values: +## DEBUG = -4 +## INFO = 0 +## WARN = 4 +## ERROR = 8 +## Default: 0 (INFO) +# +# loglevel = 0 + + +## ============================================================================= +## Weather Configuration +## ============================================================================= +[weather] + +## Weather data provider. +## Supported providers: +## - Open-Meteo => config name: "open-meteo" +## Default: "open-meteo" +# +# provider = "open-meteo" + +## Number of hours ahead to use as forecast values +## Allowed values: 1–24 +## Default: 3 +# +# forecast_hours = 3 + +## Temperature threshold below which conditions are classified as cold. +## Defaults are expressed in degrees Celsius and are based on +## potentially hazardous driving conditions. +## +## If the temperature goes below the configured cold_threshold, waybar-weather +## will output an additional CSS class "cold", that can be used in the waybar style +## config to style waybar-weather differently in these kind of conditions. +## +## Default: 2 +# +# cold_threshold = 2.0 + +## Temperature threshold above which conditions are classified as hot. +## Defaults are expressed in degrees Celsius and are based on +## uncomfortable or potentially dangerous heat levels. +## +## If the temperature goes above the configured hot_threshold, waybar-weather +## will output an additional CSS class "hot", that can be used in the waybar style +## config to style waybar-weather differently in these kind of conditions. +## +## Default: 30 +# +# hot_threshold = 30.0 + + +## ============================================================================= +## Update and Output Intervals +## ============================================================================= +[intervals] + +## Interval at which weather data is refreshed from the provider. +## Default: 15m +# +# weather_update = "15m" + +## Interval at which output data is emitted to waybar. +## Default: 30s +# +# output = "30s" + + +## ============================================================================= +## Output Templates +## ============================================================================= +[templates] + +## waybar-weather providers different templating options, that allow you to customize waybar-weather +## in the way you like. waybar-weather uses the Go templating syntax (reference: https://pkg.go.dev/text/template) +## We provide several variables and functions that represent address or weather data (current or forcasted) +## that can be used to show as output for waybar-weather. +## +## In general there are two different types of output: "text" and "tooltip". "text" is the value that is +## always shown in the waybar and "tooltip" is the text that is shown when hovering over the waybar menu item. +## Additionally, we provide "alt_text" and "alt_tooltip" which can be used as alternative text to be displayed. +## You can toggle between text/tooltip and alt_text/alt_tooltip by clicking the menu item. Be default we use +## this to toggle between current and forecasted weather data. +## +## Please refer to the README for available variables and functions. + +## Primary text template used for output rendering. +# +# text = "" + +## Alternative text template. +# +# alt_text = "" + +## Primary tooltip template. +# +# tooltip = "" + +## Alternative tooltip template. +# +# alt_tooltip = "" + +## Use CSS-based icons instead of rendering icons directly in the template. +## When enabled, waybar-weather will emit appropriate CSS classes +## that can be styled in the waybar stylesheet. +## +## Default: false +# +# use_css_icon = false + + +## ============================================================================= +## Geolocation Configuration +## ============================================================================= +[geolocation] + +## Path to a static geolocation file for the geolocation_file provider. +## If set, this file is used with the highest accuracy. +# +# geolocation_file = "" + +## Path to a static city name file. +## If set, this file is used to resolve human-readable location names. +# +# cityname_file = "" + +## Disable individual geolocation providers. +## All providers are enabled by default - they might not provide data, though (e. g. if no gpsd is running, +## the gpsd provider will not be able to provide location data). +## +## For details on the different geolocation providers, please refer the README. +# +# disable_geoip = false +# disable_geoapi = false +# disable_geolocation_file = false +# disable_cityname_file = false +# disable_ichnaea = false +# disable_gpsd = false + + +## ============================================================================= +## Geocoder Configuration +## ============================================================================= +[geocoder] + +## For details on the different geocoder providers, please refer the README. + +## Reverse geocoding provider used to resolve human-readable locations. +## Default: "nominatim" +# +# provider = "nominatim" + +## API key for the selected geocoding provider, if required. +# +# apikey = "" diff --git a/config/waybar-weather/geolocation.txt b/config/waybar-weather/geolocation.txt new file mode 100644 index 00000000..498d6ac2 --- /dev/null +++ b/config/waybar-weather/geolocation.txt @@ -0,0 +1,13 @@ +## SPDX-FileCopyrightText: Winni Neessen +## +## SPDX-License-Identifier: MIT +## +## Example file for the geolocation_file geobus provider +## This provider is based on a simple file containing a , pair +## pointing towards the desired location. +## +## The geolocation file must be placed in the waybar-weather config directory: +## ~/.config/waybar-weather/geolocation +## +## The following coordinates point towards Apple Park in Cupertino, CA +37.332806,-122.005371 \ No newline at end of file diff --git a/copy.sh b/copy.sh index ea582fca..8d04ef4e 100755 --- a/copy.sh +++ b/copy.sh @@ -415,6 +415,47 @@ printf "\n%.0s" {1..1} printf "${INFO} - Copying dotfiles ${SKY_BLUE}second${RESET} part\n" copy_phase2 "$LOG" printf "\\n%.0s" {1..1} +# Non-express upgrades: copy waybar-weather config and optionally set units +if [ "$UPGRADE_MODE" -eq 1 ] && [ "$EXPRESS_MODE" -eq 0 ]; then + WAYBAR_WEATHER_SRC="$DOTFILES_DIR/config/waybar-weather" + WAYBAR_WEATHER_DEST="$HOME/.config/waybar-weather" + if [ -d "$WAYBAR_WEATHER_SRC" ]; then + echo "${INFO} - Copying waybar-weather config for upgrade" 2>&1 | tee -a "$LOG" + mkdir -p "$WAYBAR_WEATHER_DEST" + cp -r "$WAYBAR_WEATHER_SRC/." "$WAYBAR_WEATHER_DEST/" 2>&1 | tee -a "$LOG" + else + echo "${WARN} - waybar-weather config not found at $WAYBAR_WEATHER_SRC" 2>&1 | tee -a "$LOG" + fi + + while true; do + read -r -p "${CAT} Use Fahrenheit (F) or Celsius (C)? [C]: " WEATHER_UNITS + WEATHER_UNITS=$(echo "${WEATHER_UNITS}" | tr '[:upper:]' '[:lower:]') + case "$WEATHER_UNITS" in + f|fahrenheit) + WEATHER_CFG="$WAYBAR_WEATHER_DEST/config.toml" + if [ -f "$WEATHER_CFG" ]; then + if grep -qE '^[[:space:]]*units[[:space:]]*=' "$WEATHER_CFG"; then + sed -i 's/^[[:space:]]*units[[:space:]]*=.*/units = "imperial"/' "$WEATHER_CFG" + elif grep -qE '^[[:space:]]*#\s*units[[:space:]]*=' "$WEATHER_CFG"; then + sed -i 's/^[[:space:]]*#\s*units[[:space:]]*=.*/units = "imperial"/' "$WEATHER_CFG" + else + printf '\nunits = "imperial"\n' >> "$WEATHER_CFG" + fi + echo "${OK} - Set waybar-weather units to imperial" 2>&1 | tee -a "$LOG" + else + echo "${WARN} - waybar-weather config not found at $WEATHER_CFG" 2>&1 | tee -a "$LOG" + fi + break + ;; + c|celsius|"") + # Default config already uses metric; no change needed + break + ;; + *) + echo "${WARN} Please enter 'F' or 'C'." ;; + esac + done +fi # ags config # Check if ags is installed diff --git a/update-dots.sh b/update-dots.sh deleted file mode 100755 index 84bd7611..00000000 --- a/update-dots.sh +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail -IFS=$'\n\t' - -if [[ -t 1 ]]; then - BOLD="$(tput bold || true)" - DIM="$(tput dim || true)" - RED="$(tput setaf 1 || true)" - GREEN="$(tput setaf 2 || true)" - YELLOW="$(tput setaf 3 || true)" - BLUE="$(tput setaf 4 || true)" - RESET="$(tput sgr0 || true)" -else - BOLD=""; DIM=""; RED=""; GREEN=""; YELLOW=""; BLUE=""; RESET="" -fi - -log() { printf "%b\n" "${BLUE}==>${RESET} $*"; } -ok() { printf "%b\n" "${GREEN}✔${RESET} $*"; } -warn() { printf "%b\n" "${YELLOW}⚠${RESET} $*"; } -err() { printf "%b\n" "${RED}✖${RESET} $*"; } - -log "${BOLD}Hyprland-Dots updater${RESET}" - -if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then - err "Not inside a git repository." - exit 1 -fi - -branch="$(git rev-parse --abbrev-ref HEAD)" -if [[ "$branch" == "HEAD" ]]; then - warn "Detached HEAD state detected." -fi - -log "Fetching remote updates..." -git fetch --tags --quiet - -upstream="" -if git rev-parse --abbrev-ref --symbolic-full-name "@{u}" >/dev/null 2>&1; then - upstream="$(git rev-parse --abbrev-ref --symbolic-full-name "@{u}")" -else - if git show-ref --verify --quiet "refs/remotes/origin/${branch}"; then - upstream="origin/${branch}" - fi -fi - -if [[ -z "$upstream" ]]; then - err "No upstream found for branch '${branch}'." - exit 1 -fi - -log "Current branch: ${BOLD}${branch}${RESET}" -log "Upstream: ${BOLD}${upstream}${RESET}" - -behind_count="$(git rev-list --count "HEAD..${upstream}")" -ahead_count="$(git rev-list --count "${upstream}..HEAD")" - -if [[ "$behind_count" -eq 0 ]]; then - ok "Already up to date with ${upstream}." - if [[ "$ahead_count" -gt 0 ]]; then - warn "Local branch is ahead by ${ahead_count} commit(s)." - fi - exit 0 -fi - -warn "Updates available: behind by ${behind_count} commit(s)." -read -r -p "Update now? [y/N] " reply -case "${reply:-}" in - y|Y|yes|YES) - log "Stashing local changes..." - git stash -u - - log "Pulling latest changes from ${upstream}..." - git pull - - ok "Update complete." - printf "%b\n" "${DIM}Next: run ./copy.sh to upgrade the Hyprland dotfiles.${RESET}" - ;; - *) - warn "Update cancelled." - ;; -esac -- cgit v1.2.3 From 0e02857355b5f3546cf8a5e083221217d9126dc3 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Fri, 20 Feb 2026 17:36:40 -0500 Subject: Added script for ubuntu 26.04 need to start waybar For some reason, yet unknown ``` exec-once = /usr/libexec/xdg-desktop-portal-hyprland & exec-once = /usr/libexec/xdg-desktop-portal & exec-once = waybar -l info ``` is needed to start waybar on ubuntu 26.04 (currently beta) otherwise it fails with a free desktop timeout error On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: hypr/configs/Startup_Apps.conf new file: hypr/scripts/PortalHyprlandUbuntu2604.sh --- config/hypr/configs/Startup_Apps.conf | 1 + config/hypr/scripts/PortalHyprlandUbuntu2604.sh | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100755 config/hypr/scripts/PortalHyprlandUbuntu2604.sh (limited to 'config/hypr/scripts') diff --git a/config/hypr/configs/Startup_Apps.conf b/config/hypr/configs/Startup_Apps.conf index c0ca9c41..67680af4 100644 --- a/config/hypr/configs/Startup_Apps.conf +++ b/config/hypr/configs/Startup_Apps.conf @@ -24,6 +24,7 @@ exec-once = swaync #exec-once = ags #exec-once = blueman-applet #exec-once = rog-control-center +exec-once = $scriptsDir/PortalHyprlandUbuntu2604.sh exec-once = waybar exec-once = qs -c overview # Quickshell Overview exec-once = hypridle diff --git a/config/hypr/scripts/PortalHyprlandUbuntu2604.sh b/config/hypr/scripts/PortalHyprlandUbuntu2604.sh new file mode 100755 index 00000000..5cb3c01b --- /dev/null +++ b/config/hypr/scripts/PortalHyprlandUbuntu2604.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## +# Ubuntu 26.04 workaround: start portals manually before waybar. + +set -euo pipefail + +if [[ -r /etc/os-release ]]; then + # shellcheck disable=SC1091 + . /etc/os-release + if [[ "${ID:-}" == "ubuntu" && "${VERSION_ID:-}" == "26.04" ]]; then + if [[ -x "$HOME/.config/hypr/scripts/PortalHyprland.sh" ]]; then + "$HOME/.config/hypr/scripts/PortalHyprland.sh" + fi + fi +fi -- cgit v1.2.3 From ce857ab4f3f37943528cf30f41b33a65906fad6c Mon Sep 17 00:00:00 2001 From: Loïc Pilette <155224839+LoicPil@users.noreply.github.com> Date: Sat, 21 Feb 2026 02:17:33 +0100 Subject: fix: Tak0-Per-Window-Switch reads kb_layout from UserSettings.conf first (#8) --- config/hypr/scripts/Tak0-Per-Window-Switch.sh | 36 +++++++++++++++++---------- 1 file changed, 23 insertions(+), 13 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Tak0-Per-Window-Switch.sh b/config/hypr/scripts/Tak0-Per-Window-Switch.sh index 6cd0c564..e1f4213d 100755 --- a/config/hypr/scripts/Tak0-Per-Window-Switch.sh +++ b/config/hypr/scripts/Tak0-Per-Window-Switch.sh @@ -1,5 +1,5 @@ ################################################################## -# # +# # # # # TAK_0'S Per-Window-Switch # # # @@ -7,13 +7,14 @@ # # # Just a little script that I made to switch keyboard layouts # # per-window instead of global switching for the more # -# smooth and comfortable workflow. # +# 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" -CFG_FILE="$HOME/.config/hypr/configs/SystemSettings.conf" +USER_CFG="$HOME/.config/hypr/UserConfigs/UserSettings.conf" +SYS_CFG="$HOME/.config/hypr/configs/SystemSettings.conf" ICON="$HOME/.config/swaync/images/ja.png" SCRIPT_NAME="$(basename "$0")" @@ -21,13 +22,16 @@ SCRIPT_NAME="$(basename "$0")" touch "$MAP_FILE" # Read layouts from config -if ! grep -q 'kb_layout' "$CFG_FILE"; then - echo "Error: cannot find kb_layout in $CFG_FILE" >&2 +if grep -q 'kb_layout' "$USER_CFG" 2>/dev/null; then + CFG_FILE="$USER_CFG" +elif grep -q 'kb_layout' "$SYS_CFG" 2>/dev/null; then + CFG_FILE="$SYS_CFG" +else + echo "Error: cannot find kb_layout in UserSettings.conf nor SystemSettings.conf" >&2 exit 1 fi kb_layouts=($(grep 'kb_layout' "$CFG_FILE" | cut -d '=' -f2 | tr -d '[:space:]' | tr ',' ' ')) count=${#kb_layouts[@]} - # Get current active window ID get_win() { hyprctl activewindow -j | jq -r '.address // .id' @@ -41,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" } @@ -74,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]}" @@ -96,7 +100,10 @@ cmd_restore() { # Listen to focus events and restore window-specific layouts subscribe() { local SOCKET2="$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" - [[ -S "$SOCKET2" ]] || { echo "Error: Hyprland socket not found." >&2; exit 1; } + [[ -S "$SOCKET2" ]] || { + echo "Error: Hyprland socket not found." >&2 + exit 1 + } socat -u UNIX-CONNECT:"$SOCKET2" - | while read -r line; do [[ "$line" =~ ^activewindow ]] && cmd_restore @@ -110,6 +117,9 @@ 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 -- cgit v1.2.3 From 97110b108e807d46367244aec89a0545ba67c46f Mon Sep 17 00:00:00 2001 From: Vyle <121424993+IvyProtocol@users.noreply.github.com> Date: Sat, 21 Feb 2026 11:11:21 +0600 Subject: Adding SinkIntToggle for Mute/Unmute Active-Window (#10) * Adding SinkIntToggle for Mute/Unmute Active-Window * Refactoring and robust usage of SinkIntToggle.sh * Update SinkIntToggle.sh thank you for doing this --- config/hypr/configs/Keybinds.conf | 1 + config/hypr/scripts/SinkIntToggle.sh | 97 ++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100755 config/hypr/scripts/SinkIntToggle.sh (limited to 'config/hypr/scripts') diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index ad7d31d9..84a744bd 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -37,6 +37,7 @@ bindd = $mainMod CTRL, R, rofi theme selector, exec, $scriptsDir/RofiThemeSelect bindd = $mainMod CTRL SHIFT, R, rofi theme selector (modified), exec, pkill rofi || true && $scriptsDir/RofiThemeSelector-modified.sh bindd = $mainMod CTRL, K, Kitty theme selector, exec, $scriptsDir/Kitty_themes.sh bindd = $mainMod SHIFT, B, Set static Rainbow Border, exec, $UserScripts/RainbowBorders-low-cpu.sh --run-once +bindd = $mainMod SHIFT, H, Toggle Mute/Unmute for Active-Window, exec, $scriptsDir/SinkIntToggle.sh bindd = ALT SHIFT, S, Hyprshot Screen Capture, exec, $scriptsDir/hyprshot.sh -m region -o %HOME/Pictures/Screenshots bindd = $mainMod SHIFT, F, fullscreen, fullscreen diff --git a/config/hypr/scripts/SinkIntToggle.sh b/config/hypr/scripts/SinkIntToggle.sh new file mode 100755 index 00000000..12312a47 --- /dev/null +++ b/config/hypr/scripts/SinkIntToggle.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash +set -euo pipefail + +XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" +swayIconDir="${XDG_CONFIG_HOME}/swaync/icons" + +#// Credits to sl1ng for the orginal script. Rewritten by Vyle. +ctlcheck=("pactl" "jq" "notify-send" "awk" "pgrep" "hyprctl" "iconv") +missing=() + +for ctl in "${ctlcheck[@]}"; do + command -v "${ctl}" >/dev/null || missing+=("${ctl}") +done + +if (( ${#missing[@]} )) 2>/dev/null; then + echo "Missing required dependencies: \"${missing[*]}\"" + exit 1 +fi + +#// Parse .pid, .class, .title to __pid, __class, __title. +active_json="$(hyprctl -j activewindow 2>/dev/null || { echo -e "Did hyprctl fail to run? [EXIT-CODE:-1]"; exit 1; } )" +PID="$(jq -r '"\(.pid)\t\(.class)\t\(.title)"' <<< "${active_json}" || { echo -e "Did jq fail to run? [EXIT-CODE:-1]"; exit 1; } )" + +IFS=$'\t' read -r __pid __class __title <<< "${PID}" + +[[ -z "${__pid}" ]] && { echo -e "Could not resolve PID for focused window."; exit 1; } +sink_json="$(pactl -f json list sink-inputs 2>/dev/null | iconv -f utf-8 -t utf-8 -c || { echo -e "Did pactl or iconv fail to run? Required manual intervention."; exit 1; } )" + +#// Check if the __pid matches application.process.id or else verify other statements. +mapfile -t sink_ids < <(jq -r --arg pid "${__pid}" --arg class "${__class}" --arg title "${__title}" ' +.[] | + def lc(x): (x // "" | ascii_downcase); + def normalize(x): x | gsub("[-_~.]+";" ") ; + select( + (.properties["application.process.id"] // "") == $pid + or + (lc(.properties["application.name"]) | contains(lc($class))) + or + (lc(.properties["application.id"]) | contains(lc($class))) + or + (lc(.properties["application.process.binary"]) | contains(lc($class))) + or + ((normalize(lc(.properties["media.name"])) | test(normalize(lc($title))))) + ) | .index' <<< "${sink_json}" +) + +if [[ "${#sink_ids[@]}" -eq 0 ]]; then + fallback_pid="$(pgrep -x "${__class}" | head -n 1 || true)" + if [[ -n "${fallback_pid}" ]]; then + mapfile -t sink_ids < <( jq -r --arg pid "${fallback_pid}" '.[] | + select(.properties["application.process.id"] == $pid) | .index' <<< "${sink_json}" ) + fi +fi + +#// Auto-Detect if the environment is on Hyprland or $HYPRLAND_INSTANCE_SIGNATURE. +if [[ ${#sink_ids[@]} -eq 0 ]]; then + if [[ -n "${HYPRLAND_INSTANCE_SIGNATURE}" ]]; then + # Even if the fallback_pid remains empty, we will dispatch exit code based on $HYPRLAND_INSTANCE_SIGNATURE. + notify-send -a "t1" -r 91190 -t 1200 -i "${swayIconDir}/volume-low.png" "No sink input for the active_window: ${__class}" + echo "No sink input for focused window: ${__class}" + exit 1 + else + echo "No sink input for focused active_window ${__class}" + exit 1 + fi +fi + +idsJson=$(printf '%s\n' "${sink_ids[@]}" | jq -s 'map(tonumber)') + +#// Get the available option from pactl. +want_mute=$(jq -r --argjson ids "$idsJson" ' + [ .[] | select(.index as $i | $ids | index($i)) | .mute ] as $m | + if all($m[]; . == true) then "no" + else "yes" + end' <<< "${sink_json}" +) + +if [[ "${want_mute}" == "no" ]]; then + state_msg="Unmuted" + swayIcon="${swayIconDir}/volume-high.png" +else + state_msg="Muted" + swayIcon="${swayIconDir}/volume-mute.png" +fi + +[[ -f "${swayIcon}" ]] || echo -e "Missing swaync icons." + +for id in "${sink_ids[@]}"; do + pactl set-sink-input-mute "$id" "$want_mute" +done + +#// Append pamixer to get a nice result. Pamixer is complete optional here. +if command -v pamixer >/dev/null; then + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" "$(pamixer --get-default-sink | awk -F '"' 'END{print $(NF - 1)}')" +else + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" +fi -- cgit v1.2.3 From f0d579a03af9e3ba4a7cf64da96c23f485faac7a Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 21 Feb 2026 00:22:44 -0500 Subject: added script to mute active window from Ivy and s1lang On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Keybinds.conf renamed: config/hypr/scripts/SinkIntToggle.sh -> config/hypr/scripts/Toggle-Active-Window-Audio.sh --- CHANGELOG.md | 10 +++ config/hypr/configs/Keybinds.conf | 2 +- config/hypr/scripts/SinkIntToggle.sh | 97 ----------------------- config/hypr/scripts/Toggle-Active-Window-Audio.sh | 97 +++++++++++++++++++++++ 4 files changed, 108 insertions(+), 98 deletions(-) delete mode 100755 config/hypr/scripts/SinkIntToggle.sh create mode 100755 config/hypr/scripts/Toggle-Active-Window-Audio.sh (limited to 'config/hypr/scripts') diff --git a/CHANGELOG.md b/CHANGELOG.md index 332c6f67..a5bae84f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## v2.3.21 +- Added script from `@ivy` and `@sl1ng` to Toggle audio on active Wundow + - `$HOME/.config/hypr/scripts/Toggle-Active-Window-Audio.sh` + - Keybind is `SUPER + SHIFT + H` (hush) +- Added check for ubunutu v26.04 in startup + - For as of yet unknown reason waybar won't startup without this + ``` + exec-once = /usr/libexec/xdg-desktop-portal-hyprland & + exec-once = /usr/libexec/xdg-desktop-portal & + exec-once = waybar + ``` - Updated `waybar-weather` - Created default files in `.config/waybar-weather` - You can manually override settings or providers diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 84a744bd..ba0201f1 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -37,7 +37,7 @@ bindd = $mainMod CTRL, R, rofi theme selector, exec, $scriptsDir/RofiThemeSelect bindd = $mainMod CTRL SHIFT, R, rofi theme selector (modified), exec, pkill rofi || true && $scriptsDir/RofiThemeSelector-modified.sh bindd = $mainMod CTRL, K, Kitty theme selector, exec, $scriptsDir/Kitty_themes.sh bindd = $mainMod SHIFT, B, Set static Rainbow Border, exec, $UserScripts/RainbowBorders-low-cpu.sh --run-once -bindd = $mainMod SHIFT, H, Toggle Mute/Unmute for Active-Window, exec, $scriptsDir/SinkIntToggle.sh +bindd = $mainMod SHIFT, H, Toggle Mute/Unmute for Active-Window, exec, $scriptsDir/Toggle-Active-Window-Audio.sh bindd = ALT SHIFT, S, Hyprshot Screen Capture, exec, $scriptsDir/hyprshot.sh -m region -o %HOME/Pictures/Screenshots bindd = $mainMod SHIFT, F, fullscreen, fullscreen diff --git a/config/hypr/scripts/SinkIntToggle.sh b/config/hypr/scripts/SinkIntToggle.sh deleted file mode 100755 index 12312a47..00000000 --- a/config/hypr/scripts/SinkIntToggle.sh +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" -swayIconDir="${XDG_CONFIG_HOME}/swaync/icons" - -#// Credits to sl1ng for the orginal script. Rewritten by Vyle. -ctlcheck=("pactl" "jq" "notify-send" "awk" "pgrep" "hyprctl" "iconv") -missing=() - -for ctl in "${ctlcheck[@]}"; do - command -v "${ctl}" >/dev/null || missing+=("${ctl}") -done - -if (( ${#missing[@]} )) 2>/dev/null; then - echo "Missing required dependencies: \"${missing[*]}\"" - exit 1 -fi - -#// Parse .pid, .class, .title to __pid, __class, __title. -active_json="$(hyprctl -j activewindow 2>/dev/null || { echo -e "Did hyprctl fail to run? [EXIT-CODE:-1]"; exit 1; } )" -PID="$(jq -r '"\(.pid)\t\(.class)\t\(.title)"' <<< "${active_json}" || { echo -e "Did jq fail to run? [EXIT-CODE:-1]"; exit 1; } )" - -IFS=$'\t' read -r __pid __class __title <<< "${PID}" - -[[ -z "${__pid}" ]] && { echo -e "Could not resolve PID for focused window."; exit 1; } -sink_json="$(pactl -f json list sink-inputs 2>/dev/null | iconv -f utf-8 -t utf-8 -c || { echo -e "Did pactl or iconv fail to run? Required manual intervention."; exit 1; } )" - -#// Check if the __pid matches application.process.id or else verify other statements. -mapfile -t sink_ids < <(jq -r --arg pid "${__pid}" --arg class "${__class}" --arg title "${__title}" ' -.[] | - def lc(x): (x // "" | ascii_downcase); - def normalize(x): x | gsub("[-_~.]+";" ") ; - select( - (.properties["application.process.id"] // "") == $pid - or - (lc(.properties["application.name"]) | contains(lc($class))) - or - (lc(.properties["application.id"]) | contains(lc($class))) - or - (lc(.properties["application.process.binary"]) | contains(lc($class))) - or - ((normalize(lc(.properties["media.name"])) | test(normalize(lc($title))))) - ) | .index' <<< "${sink_json}" -) - -if [[ "${#sink_ids[@]}" -eq 0 ]]; then - fallback_pid="$(pgrep -x "${__class}" | head -n 1 || true)" - if [[ -n "${fallback_pid}" ]]; then - mapfile -t sink_ids < <( jq -r --arg pid "${fallback_pid}" '.[] | - select(.properties["application.process.id"] == $pid) | .index' <<< "${sink_json}" ) - fi -fi - -#// Auto-Detect if the environment is on Hyprland or $HYPRLAND_INSTANCE_SIGNATURE. -if [[ ${#sink_ids[@]} -eq 0 ]]; then - if [[ -n "${HYPRLAND_INSTANCE_SIGNATURE}" ]]; then - # Even if the fallback_pid remains empty, we will dispatch exit code based on $HYPRLAND_INSTANCE_SIGNATURE. - notify-send -a "t1" -r 91190 -t 1200 -i "${swayIconDir}/volume-low.png" "No sink input for the active_window: ${__class}" - echo "No sink input for focused window: ${__class}" - exit 1 - else - echo "No sink input for focused active_window ${__class}" - exit 1 - fi -fi - -idsJson=$(printf '%s\n' "${sink_ids[@]}" | jq -s 'map(tonumber)') - -#// Get the available option from pactl. -want_mute=$(jq -r --argjson ids "$idsJson" ' - [ .[] | select(.index as $i | $ids | index($i)) | .mute ] as $m | - if all($m[]; . == true) then "no" - else "yes" - end' <<< "${sink_json}" -) - -if [[ "${want_mute}" == "no" ]]; then - state_msg="Unmuted" - swayIcon="${swayIconDir}/volume-high.png" -else - state_msg="Muted" - swayIcon="${swayIconDir}/volume-mute.png" -fi - -[[ -f "${swayIcon}" ]] || echo -e "Missing swaync icons." - -for id in "${sink_ids[@]}"; do - pactl set-sink-input-mute "$id" "$want_mute" -done - -#// Append pamixer to get a nice result. Pamixer is complete optional here. -if command -v pamixer >/dev/null; then - notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" "$(pamixer --get-default-sink | awk -F '"' 'END{print $(NF - 1)}')" -else - notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" -fi diff --git a/config/hypr/scripts/Toggle-Active-Window-Audio.sh b/config/hypr/scripts/Toggle-Active-Window-Audio.sh new file mode 100755 index 00000000..44370d10 --- /dev/null +++ b/config/hypr/scripts/Toggle-Active-Window-Audio.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash +set -euo pipefail + +XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" +swayIconDir="${XDG_CONFIG_HOME}/swaync/icons" + +#// Credits to sl1ng for the orginal script. Rewritten by Vyle. +ctlcheck=("pactl" "jq" "notify-send" "awk" "pgrep" "hyprctl" "iconv") +missing=() + +for ctl in "${ctlcheck[@]}"; do + command -v "${ctl}" >/dev/null || missing+=("${ctl}") +done + +if (( ${#missing[@]} )) 2>/dev/null; then + echo "Missing required dependencies: \"${missing[*]}\"" + exit 1 +fi + +#// Parse .pid, .class, .title to __pid, __class, __title. +active_json="$(hyprctl -j activewindow 2>/dev/null || { echo -e "Did hyprctl fail to run? [EXIT-CODE:-1]"; exit 1; } )" +PID="$(jq -r '"\(.pid)\t\(.class)\t\(.title)"' <<< "${active_json}" || { echo -e "Did jq fail to run? [EXIT-CODE:-1]"; exit 1; } )" + +IFS=$'\t' read -r __pid __class __title <<< "${PID}" + +[[ -z "${__pid}" ]] && { echo -e "Could not resolve PID for focused window."; exit 1; } +sink_json="$(pactl -f json list sink-inputs 2>/dev/null | iconv -f utf-8 -t utf-8 -c || { echo -e "Did pactl or iconv fail to run? Required manual intervention."; exit 1; } )" + +#// Check if the __pid matches application.process.id or else verify other statements. +mapfile -t sink_ids < <(jq -r --arg pid "${__pid}" --arg class "${__class}" --arg title "${__title}" ' +.[] | + def lc(x): (x // "" | ascii_downcase); + def normalize(x): x | gsub("[-_~.]+";" ") ; + select( + (.properties["application.process.id"] // "") == $pid + or + (lc(.properties["application.name"]) | contains(lc($class))) + or + (lc(.properties["application.id"]) | contains(lc($class))) + or + (lc(.properties["application.process.binary"]) | contains(lc($class))) + or + (normalize(lc(.properties["media.name"])) | contains(normalize(lc($title)))) + ) | .index' <<< "${sink_json}" +) + +if [[ "${#sink_ids[@]}" -eq 0 ]]; then + fallback_pid="$(pgrep -x "${__class}" | head -n 1 || true)" + if [[ -n "${fallback_pid}" ]]; then + mapfile -t sink_ids < <( jq -r --arg pid "${fallback_pid}" '.[] | + select(.properties["application.process.id"] == $pid) | .index' <<< "${sink_json}" ) + fi +fi + +#// Auto-Detect if the environment is on Hyprland or $HYPRLAND_INSTANCE_SIGNATURE. +if [[ ${#sink_ids[@]} -eq 0 ]]; then + if [[ -n "${HYPRLAND_INSTANCE_SIGNATURE}" ]]; then + # Even if the fallback_pid remains empty, we will dispatch exit code based on $HYPRLAND_INSTANCE_SIGNATURE. + notify-send -a "t1" -r 91190 -t 1200 -i "${swayIconDir}/volume-low.png" "No sink input for the active_window: ${__class}" + echo "No sink input for focused window: ${__class}" + exit 1 + else + echo "No sink input for focused active_window ${__class}" + exit 1 + fi +fi + +idsJson=$(printf '%s\n' "${sink_ids[@]}" | jq -s 'map(tonumber)') + +#// Get the available option from pactl. +want_mute=$(jq -r --argjson ids "$idsJson" ' + [ .[] | select(.index as $i | $ids | index($i)) | .mute ] as $m | + if all($m[]; . == true) then "no" + else "yes" + end' <<< "${sink_json}" +) + +if [[ "${want_mute}" == "no" ]]; then + state_msg="Unmuted" + swayIcon="${swayIconDir}/volume-high.png" +else + state_msg="Muted" + swayIcon="${swayIconDir}/volume-mute.png" +fi + +[[ -f "${swayIcon}" ]] || echo -e "Missing swaync icons." + +for id in "${sink_ids[@]}"; do + pactl set-sink-input-mute "$id" "$want_mute" +done + +#// Append pamixer to get a nice result. Pamixer is complete optional here. +if command -v pamixer >/dev/null; then + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" "$(pamixer --get-default-sink | awk -F '"' 'END{print $(NF - 1)}')" +else + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" +fi -- cgit v1.2.3 From 888b3fad081d04d624547a09be52afe5d594c0dc Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 21 Feb 2026 16:56:31 -0500 Subject: Fixed muting script to work more consitently and send notifications On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Toggle-Active-Window-Audio.sh --- config/hypr/scripts/Toggle-Active-Window-Audio.sh | 65 +++++++++++++++++++---- 1 file changed, 56 insertions(+), 9 deletions(-) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Toggle-Active-Window-Audio.sh b/config/hypr/scripts/Toggle-Active-Window-Audio.sh index 44370d10..6d434c13 100755 --- a/config/hypr/scripts/Toggle-Active-Window-Audio.sh +++ b/config/hypr/scripts/Toggle-Active-Window-Audio.sh @@ -25,14 +25,30 @@ IFS=$'\t' read -r __pid __class __title <<< "${PID}" [[ -z "${__pid}" ]] && { echo -e "Could not resolve PID for focused window."; exit 1; } sink_json="$(pactl -f json list sink-inputs 2>/dev/null | iconv -f utf-8 -t utf-8 -c || { echo -e "Did pactl or iconv fail to run? Required manual intervention."; exit 1; } )" +#// Collect all descendant PIDs for the active window (Chrome/Wayland audio often runs in child processes). +declare -A seen_pids=() +queue=("${__pid}") +all_pids=() +while ((${#queue[@]})); do + pid="${queue[0]}" + queue=("${queue[@]:1}") + [[ -n "${seen_pids[$pid]:-}" ]] && continue + seen_pids["$pid"]=1 + all_pids+=("$pid") + mapfile -t children < <(pgrep -P "$pid" || true) + for child in "${children[@]}"; do + [[ -n "${seen_pids[$child]:-}" ]] || queue+=("$child") + done +done +pidsJson="$(printf '%s\n' "${all_pids[@]}" | jq -s 'map(tonumber)')" -#// Check if the __pid matches application.process.id or else verify other statements. -mapfile -t sink_ids < <(jq -r --arg pid "${__pid}" --arg class "${__class}" --arg title "${__title}" ' +#// Check if any descendant PID matches application.process.id or else verify other statements. +mapfile -t sink_ids < <(jq -r --argjson pids "${pidsJson}" --arg class "${__class}" --arg title "${__title}" ' .[] | def lc(x): (x // "" | ascii_downcase); def normalize(x): x | gsub("[-_~.]+";" ") ; select( - (.properties["application.process.id"] // "") == $pid + (.properties["application.process.id"] | tostring | tonumber? as $p | $p != null and ($pids | index($p))) or (lc(.properties["application.name"]) | contains(lc($class))) or @@ -45,10 +61,25 @@ mapfile -t sink_ids < <(jq -r --arg pid "${__pid}" --arg class "${__class}" --ar ) if [[ "${#sink_ids[@]}" -eq 0 ]]; then - fallback_pid="$(pgrep -x "${__class}" | head -n 1 || true)" - if [[ -n "${fallback_pid}" ]]; then - mapfile -t sink_ids < <( jq -r --arg pid "${fallback_pid}" '.[] | - select(.properties["application.process.id"] == $pid) | .index' <<< "${sink_json}" ) + mapfile -t fallback_pids < <(pgrep -x "${__class}" || true) + if [[ "${#fallback_pids[@]}" -gt 0 ]]; then + declare -A seen_fallback=() + queue=("${fallback_pids[@]}") + all_fallback=() + while ((${#queue[@]})); do + pid="${queue[0]}" + queue=("${queue[@]:1}") + [[ -n "${seen_fallback[$pid]:-}" ]] && continue + seen_fallback["$pid"]=1 + all_fallback+=("$pid") + mapfile -t children < <(pgrep -P "$pid" || true) + for child in "${children[@]}"; do + [[ -n "${seen_fallback[$child]:-}" ]] || queue+=("$child") + done + done + fallbackJson="$(printf '%s\n' "${all_fallback[@]}" | jq -s 'map(tonumber)')" + mapfile -t sink_ids < <( jq -r --argjson pids "${fallbackJson}" '.[] | + select((.properties["application.process.id"] | tostring | tonumber? as $p | $p != null and ($pids | index($p)))) | .index' <<< "${sink_json}" ) fi fi @@ -85,13 +116,29 @@ fi [[ -f "${swayIcon}" ]] || echo -e "Missing swaync icons." +changed=0 +failed_ids=() for id in "${sink_ids[@]}"; do - pactl set-sink-input-mute "$id" "$want_mute" + if pactl set-sink-input-mute "$id" "$want_mute"; then + changed=1 + else + failed_ids+=("$id") + fi done +if [[ "$changed" -eq 0 ]]; then + notify-send -a "t2" -r 91190 -t 1200 -i "${swayIconDir}/volume-low.png" "Failed to change sink input(s)" "${failed_ids[*]:-unknown}" + exit 1 +fi + #// Append pamixer to get a nice result. Pamixer is complete optional here. if command -v pamixer >/dev/null; then - notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" "$(pamixer --get-default-sink | awk -F '"' 'END{print $(NF - 1)}')" + sink_name="$(pamixer --get-default-sink 2>/dev/null | awk -F '"' 'END{print $(NF - 1)}' 2>/dev/null || true)" + if [[ -n "${sink_name}" ]]; then + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" "${sink_name}" + else + notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" + fi else notify-send -a "t2" -r 91190 -t 800 -i "${swayIcon}" "${state_msg} ${__class}" fi -- cgit v1.2.3 From 023bc847111881bf19adcfbe92792d66f0cf7513 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 21 Feb 2026 17:05:06 -0500 Subject: Added check for pactl in Toggle-Active-Window-Audio.sh On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Toggle-Active-Window-Audio.sh --- config/hypr/scripts/Toggle-Active-Window-Audio.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config/hypr/scripts') diff --git a/config/hypr/scripts/Toggle-Active-Window-Audio.sh b/config/hypr/scripts/Toggle-Active-Window-Audio.sh index 6d434c13..4d9bcd33 100755 --- a/config/hypr/scripts/Toggle-Active-Window-Audio.sh +++ b/config/hypr/scripts/Toggle-Active-Window-Audio.sh @@ -13,6 +13,9 @@ for ctl in "${ctlcheck[@]}"; do done if (( ${#missing[@]} )) 2>/dev/null; then + if printf '%s\n' "${missing[@]}" | grep -qx "pactl"; then + notify-send -a "t1" -r 91190 -t 2000 -i "${swayIconDir}/volume-low.png" "ERROR: pactl not installed" "Install 'pactl' (pulseaudio-utils or pipewire-pulse)." + fi echo "Missing required dependencies: \"${missing[*]}\"" exit 1 fi -- cgit v1.2.3