From 0d77d8a0b2a9d883927836525b76e02503e19dcd Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 15 Jun 2024 19:17:35 +0900 Subject: Bump to v2.3, Some hyprland settings adjustments --- config/hypr/UserConfigs/UserSettings.conf | 113 +++++++++++++++++------------- config/hypr/v2.2.14 | 5 -- config/hypr/v2.3 | 5 ++ copy.sh | 8 +-- 4 files changed, 73 insertions(+), 58 deletions(-) delete mode 100644 config/hypr/v2.2.14 create mode 100644 config/hypr/v2.3 diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index 8d137cc8..be4f342d 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -3,7 +3,7 @@ # This is where you put your own settings as this will not be touched during update # if the upgrade.sh is used. -# refer to Hyprland wiki for more info https://wiki.hyprland.org/Configuring/Variables +# refer to Hyprland wiki for more info https://wiki.hyprland.org/Configuring/Variables/ # Sourcing colors generated by wallust source = $HOME/.config/hypr/wallust/wallust-hyprland.conf @@ -24,11 +24,12 @@ master { } general { - sensitivity=1.00 - apply_sens_to_raw=1 + sensitivity = 1.00 + border_size = 2 + apply_sens_to_raw = 1 gaps_in = 6 gaps_out = 8 - border_size = 2 + resize_on_border = true col.active_border = $color0 $color2 $color9 $color12 $color15 90deg @@ -37,14 +38,6 @@ general { layout = dwindle } -group { - col.border_active = $color15 - - groupbar { - col.active = $color0 - } -} - decoration { rounding = 10 @@ -56,21 +49,22 @@ decoration { dim_strength = 0.1 dim_special = 0.8 - drop_shadow=true - shadow_range=6 + drop_shadow = true + shadow_range = 6 shadow_render_power = 1 col.shadow = $color12 col.shadow_inactive = 0x50000000 blur { - enabled = true - size = 6 - passes = 2 - ignore_opacity = true - new_optimizations = true - special = true + enabled = true + size = 6 + passes = 2 + ignore_opacity = true + new_optimizations = true + special = true } } + animations { enabled = yes @@ -91,37 +85,57 @@ animations { } input { - kb_layout=us - kb_variant= - kb_model= - kb_options= - kb_rules= - repeat_rate=50 - repeat_delay=300 - numlock_by_default=true - left_handed=false - follow_mouse=true - float_switch_override_focus=false + kb_layout = us + kb_variant = + kb_model = + kb_options = + kb_rules = + repeat_rate = 50 + repeat_delay = 300 + numlock_by_default = true + left_handed = false + follow_mouse = true + float_switch_override_focus = false touchpad { - disable_while_typing=true - natural_scroll=false - clickfinger_behavior=false - middle_button_emulation=true - tap-to-click=true - drag_lock=false + disable_while_typing = true + natural_scroll = false + clickfinger_behavior = false + middle_button_emulation = true + tap-to-click = true + drag_lock = false } + + # below for devices with touchdevice ie. touchscreen + touchdevice { + enabled = true + } + + # below is for table see link above for proper variables + tablet { + transform = 0 + left_handed = 0 + } } gestures { - workspace_swipe=true - workspace_swipe_fingers=3 - workspace_swipe_distance=400 - workspace_swipe_invert=true - workspace_swipe_min_speed_to_force=30 - workspace_swipe_cancel_ratio=0.5 - workspace_swipe_create_new=true - workspace_swipe_forever=true + workspace_swipe = true + workspace_swipe_fingers = 3 + workspace_swipe_distance = 400 + workspace_swipe_invert = true + workspace_swipe_min_speed_to_force = 30 + workspace_swipe_cancel_ratio = 0.5 + workspace_swipe_create_new = true + workspace_swipe_forever = true +} + + +group { + col.border_active = $color15 + + groupbar { + col.active = $color0 + } } misc { @@ -134,6 +148,7 @@ misc { focus_on_activate = false swallow_regex = ^(kitty)$ #disable_autoreload = true + initial_workspace_tracking = 0 } binds { @@ -147,7 +162,7 @@ xwayland { force_zero_scaling = true } -# cursor section for Hyprland v0.41.0 or newer -#cursor { -# enable_hyprcursor = true -#} +# cursor section for Hyprland >= v0.41.0 +cursor { + enable_hyprcursor = true +} diff --git a/config/hypr/v2.2.14 b/config/hypr/v2.2.14 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.2.14 +++ /dev/null @@ -1,5 +0,0 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/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/v2.3 b/config/hypr/v2.3 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.3 @@ -0,0 +1,5 @@ +### https://github.com/JaKooLit ### +## https://github.com/JaKooLit/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/copy.sh b/copy.sh index afbe8a58..af51ff6d 100755 --- a/copy.sh +++ b/copy.sh @@ -120,8 +120,8 @@ while true; do case $confirm in [yY]) - # If the detected layout is correct, update the 'kb_layout=' line in the file - awk -v layout="$layout" '/kb_layout/ {$0 = " kb_layout=" layout} 1' config/hypr/UserConfigs/UserSettings.conf > temp.conf + # If the detected layout is correct, update the 'kb_layout =' line in the file + awk -v layout="$layout" '/kb_layout/ {$0 = " kb_layout = " layout} 1' config/hypr/UserConfigs/UserSettings.conf > temp.conf mv temp.conf config/hypr/UserConfigs/UserSettings.conf echo "${NOTE} kb_layout $layout configured in settings. " 2>&1 | tee -a "$LOG" @@ -138,8 +138,8 @@ while true; do read -p "${CAT} - Please enter the correct keyboard layout: " new_layout - # Update the 'kb_layout=' line with the correct layout in the file - awk -v new_layout="$new_layout" '/kb_layout/ {$0 = " kb_layout=" new_layout} 1' config/hypr/UserConfigs/UserSettings.conf > temp.conf + # Update the 'kb_layout =' line with the correct layout in the file + awk -v new_layout="$new_layout" '/kb_layout/ {$0 = " kb_layout = " new_layout} 1' config/hypr/UserConfigs/UserSettings.conf > temp.conf mv temp.conf config/hypr/UserConfigs/UserSettings.conf echo "${NOTE} kb_layout $new_layout configured in settings." 2>&1 | tee -a "$LOG" break ;; -- cgit v1.2.3 From f0c450219a246e22a2aba4c909e64b5eec826795 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 16 Jun 2024 21:46:56 +0900 Subject: updated for -git version --- config/hypr/UserConfigs/UserSettings.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index be4f342d..604a6feb 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -18,7 +18,8 @@ dwindle { } master { - new_is_master=1 + new_is_master=1 # comment this when Hyprland release a new version or you are running the git version + #new_status=master # hyprland upstream or git version (next release maybe v0.41-2 or v0.42) new_on_top=1 mfact = 0.5 } -- cgit v1.2.3 From 4ee9b8ce0412ab67b6f82b41b7b2d206b4b4bd2b Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Tue, 18 Jun 2024 05:20:52 +0900 Subject: Update QuickEdit.sh (SUPER E) change view to edit --- config/hypr/UserScripts/QuickEdit.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/hypr/UserScripts/QuickEdit.sh b/config/hypr/UserScripts/QuickEdit.sh index da6a8931..cd604619 100755 --- a/config/hypr/UserScripts/QuickEdit.sh +++ b/config/hypr/UserScripts/QuickEdit.sh @@ -9,16 +9,16 @@ configs="$HOME/.config/hypr/configs" UserConfigs="$HOME/.config/hypr/UserConfigs" menu(){ - printf "1. view Env-variables\n" - printf "2. view Window-Rules\n" - printf "3. view Startup_Apps\n" - printf "4. view User-Keybinds\n" - printf "5. view Monitors\n" - printf "6. view Laptop-Keybinds\n" - printf "7. view User-Settings\n" - printf "8. view Workspace-Rules\n" - printf "9. view Default-Settings\n" - printf "10. view Default-Keybinds\n" + printf "1. edit Env-variables\n" + printf "2. edit Window-Rules\n" + printf "3. edit Startup_Apps\n" + printf "4. edit User-Keybinds\n" + printf "5. edit Monitors\n" + printf "6. edit Laptop-Keybinds\n" + printf "7. edit User-Settings\n" + printf "8. edit Workspace-Rules\n" + printf "9. edit Default-Settings\n" + printf "10. edit Default-Keybinds\n" } main() { -- cgit v1.2.3 From d5d72e1adfe7a07cd9e93ab9c3ee5c5cc62d7182 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 21 Jun 2024 04:15:38 +0900 Subject: updated discord link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6b14947..eea56ff5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@
 Discussions 
  
 Keybinds 
  
 FAQ 
   -
 Discord 
+
 Discord 

@@ -14,7 +14,7 @@ ## 💌 ** KooL-Dotfiles ** 💌 #### Hyprland Configurations / Dotfiles -![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/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)
-- cgit v1.2.3 From 659bc4bdad36b2ddff1c7fad5b4ef29c7f585388 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 21 Jun 2024 04:17:09 +0900 Subject: updated discord link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eea56ff5..74e3026d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ## 💌 ** KooL-Dotfiles ** 💌 #### Hyprland Configurations / Dotfiles -![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/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)
-- cgit v1.2.3 From 1d1101d5d96db905b35d160a5c4199bd26887da9 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 22 Jun 2024 07:33:15 +0900 Subject: updated some settings and copy.sh was also adjusted for the new changes --- config/hypr/UserConfigs/ENVariables.conf | 10 ++++++---- config/hypr/UserConfigs/UserSettings.conf | 2 ++ copy.sh | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/config/hypr/UserConfigs/ENVariables.conf b/config/hypr/UserConfigs/ENVariables.conf index ea4af035..679a94e0 100644 --- a/config/hypr/UserConfigs/ENVariables.conf +++ b/config/hypr/UserConfigs/ENVariables.conf @@ -27,22 +27,24 @@ env = MOZ_ENABLE_WAYLAND,1 env = ELECTRON_OZONE_PLATFORM_HINT,auto # NVIDIA -# This is from Hyprland Wiki. As a start, WLR_NO_HARDWARE_CURSORS 1 will be activated if nvidia gpu detected +# This is from Hyprland Wiki. Below will be activated nvidia gpu detected #env = LIBVA_DRIVER_NAME,nvidia #env = __GLX_VENDOR_LIBRARY_NAME,nvidia +#env = NVD_BACKEND,direct + +# additional ENV's for nvidia. Caution, activate with care #env = GBM_BACKEND,nvidia-drm #env = __NV_PRIME_RENDER_OFFLOAD,1 #env = __VK_LAYER_NV_optimus,NVIDIA_only #env = WLR_DRM_NO_ATOMIC,1 -#env = NVD_BACKEND,direct + # FOR VM and POSSIBLY NVIDIA -#env = WLR_NO_HARDWARE_CURSORS,1 +#env = WLR_NO_HARDWARE_CURSORS,1 # On hyprland >v0.41, now configured on variable cursor section #env = WLR_RENDERER_ALLOW_SOFTWARE,1 # nvidia firefox (for hardware acceleration on FF)? # check this post https://github.com/elFarto/nvidia-vaapi-driver#configuration #env = MOZ_DISABLE_RDD_SANDBOX,1 -#env = NVD_BACKEND,direct #env = EGL_PLATFORM,wayland \ No newline at end of file diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index 604a6feb..04407e9c 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -165,5 +165,7 @@ xwayland { # cursor section for Hyprland >= v0.41.0 cursor { + no_hardware_cursors = false enable_hyprcursor = true + warp_on_change_workspace = true } diff --git a/copy.sh b/copy.sh index af51ff6d..e8283488 100755 --- a/copy.sh +++ b/copy.sh @@ -45,15 +45,15 @@ xdg-user-dirs-update 2>&1 | tee -a "$LOG" || true # uncommenting WLR_NO_HARDWARE_CURSORS if nvidia is detected if lspci -k | grep -A 2 -E "(VGA|3D)" | grep -iq nvidia; then echo "Nvidia GPU detected. Setting up proper env's" 2>&1 | tee -a "$LOG" || true - sed -i '/env = WLR_NO_HARDWARE_CURSORS,1/s/^#//' config/hypr/UserConfigs/ENVariables.conf sed -i '/env = LIBVA_DRIVER_NAME,nvidia/s/^#//' config/hypr/UserConfigs/ENVariables.conf sed -i '/env = __GLX_VENDOR_LIBRARY_NAME,nvidia/s/^#//' config/hypr/UserConfigs/ENVariables.conf + sed -i '/env = NVD_BACKEND,direct/s/^#//' config/hypr/UserConfigs/ENVariables.conf fi # uncommenting WLR_RENDERER_ALLOW_SOFTWARE,1 if running in a VM is detected if hostnamectl | grep -q 'Chassis: vm'; then echo "System is running in a virtual machine." 2>&1 | tee -a "$LOG" || true - sed -i '/env = WLR_NO_HARDWARE_CURSORS,1/s/^#//' config/hypr/UserConfigs/ENVariables.conf + sed -i 's/^\([[:space:]]*no_hardware_cursors[[:space:]]*=[[:space:]]*\)false/\1true/' config/hypr/UserConfigs/UserSettings.conf sed -i '/env = WLR_RENDERER_ALLOW_SOFTWARE,1/s/^#//' config/hypr/UserConfigs/ENVariables.conf sed -i '/monitor = Virtual-1, 1920x1080@60,auto,1/s/^#//' config/hypr/UserConfigs/Monitors.conf fi -- cgit v1.2.3 From 6950a11c370d02233910c2e645f714bc9555e7db Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 22 Jun 2024 10:23:16 +0900 Subject: updated SwitchKB layout script in line with Settings space --- config/hypr/scripts/SwitchKeyboardLayout.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/SwitchKeyboardLayout.sh b/config/hypr/scripts/SwitchKeyboardLayout.sh index cbacd74f..55bdf997 100755 --- a/config/hypr/scripts/SwitchKeyboardLayout.sh +++ b/config/hypr/scripts/SwitchKeyboardLayout.sh @@ -8,7 +8,7 @@ notif="$HOME/.config/swaync/images/bell.png" # Check if ~/.cache/kb_layout exists and create it with a default layout from Settings.conf if not found if [ ! -f "$layout_f" ]; then - default_layout=$(grep 'kb_layout=' "$settings_file" | cut -d '=' -f 2 | cut -d ',' -f 1 2>/dev/null) + default_layout=$(grep 'kb_layout = ' "$settings_file" | cut -d '=' -f 2 | cut -d ',' -f 1 2>/dev/null) if [ -z "$default_layout" ]; then default_layout="us" # Default to 'us' layout if Settings.conf or 'kb_layout' is not found fi @@ -19,7 +19,7 @@ current_layout=$(cat "$layout_f") # Read keyboard layout settings from Settings.conf if [ -f "$settings_file" ]; then - kb_layout_line=$(grep 'kb_layout=' "$settings_file" | cut -d '=' -f 2) + kb_layout_line=$(grep 'kb_layout = ' "$settings_file" | cut -d '=' -f 2) IFS=',' read -ra layout_mapping <<< "$kb_layout_line" fi -- cgit v1.2.3 From a16280730ac5de9f872fb20d96bf7dffa189e8d3 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 22 Jun 2024 10:32:17 +0900 Subject: updated UserSettings.conf --- config/hypr/UserConfigs/UserSettings.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index 04407e9c..3ec9fa43 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -19,7 +19,7 @@ dwindle { master { new_is_master=1 # comment this when Hyprland release a new version or you are running the git version - #new_status=master # hyprland upstream or git version (next release maybe v0.41-2 or v0.42) + #new_status=master # hyprland upstream or git version (next release maybe v0.41.2 or v0.42) new_on_top=1 mfact = 0.5 } @@ -160,12 +160,12 @@ binds { #Could help when scaling and not pixelating xwayland { - force_zero_scaling = true + force_zero_scaling = true } # cursor section for Hyprland >= v0.41.0 cursor { no_hardware_cursors = false - enable_hyprcursor = true - warp_on_change_workspace = true + enable_hyprcursor = true + warp_on_change_workspace = true # for -git or Hyprland >v0.41.1 } -- cgit v1.2.3 From 9a4fdae79de6fd300dba5885e28bf6fed7e30e87 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 22 Jun 2024 10:52:40 +0900 Subject: updated fastfetch to shorten GPU and sound --- config/fastfetch/config.jsonc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc index c6eb694b..ae5f1b11 100644 --- a/config/fastfetch/config.jsonc +++ b/config/fastfetch/config.jsonc @@ -91,6 +91,7 @@ { "type": "gpu", "key": "│ ├󰻑", + "format": "{2}", "keyColor": "green" }, { @@ -122,6 +123,7 @@ { "type": "sound", "key": " AUDIO", + "format": "{2}", "keyColor": "cyan" }, { -- cgit v1.2.3 From dc587d700b1f85b202eada9d14ed7a8d26a20255 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 22 Jun 2024 15:08:36 +0900 Subject: updated Discord Link - Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74e3026d..d1e769ed 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ chmod +x upgrade.sh #### 🔮 Discord Server -- kindly join my [Discord](https://discord.gg/V2SJ92vbEN) +- kindly join my [Discord](https://discord.com/invite/9JEgZsfhex) ### 💖 Support -- cgit v1.2.3 From 3b203a29ebfc7e188f3f189fe716e9db95ad9c96 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Jun 2024 08:55:15 +0900 Subject: updated / tweak Hyprland settings --- config/hypr/UserConfigs/UserSettings.conf | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index 3ec9fa43..bfee77aa 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -18,8 +18,8 @@ dwindle { } master { - new_is_master=1 # comment this when Hyprland release a new version or you are running the git version - #new_status=master # hyprland upstream or git version (next release maybe v0.41.2 or v0.42) + #new_is_master=1 # comment this when Hyprland release a new version or you are running the git version + new_status=master # hyprland upstream or git version (next release maybe v0.41-2 or v0.42) new_on_top=1 mfact = 0.5 } @@ -122,12 +122,13 @@ input { gestures { workspace_swipe = true workspace_swipe_fingers = 3 - workspace_swipe_distance = 400 + workspace_swipe_distance = 500 workspace_swipe_invert = true workspace_swipe_min_speed_to_force = 30 workspace_swipe_cancel_ratio = 0.5 workspace_swipe_create_new = true workspace_swipe_forever = true + #workspace_swipe_use_r = true #uncomment if wanted a forever create a new workspace with swipe right } @@ -150,12 +151,13 @@ misc { swallow_regex = ^(kitty)$ #disable_autoreload = true initial_workspace_tracking = 0 + middle_click_paste = false } binds { - workspace_back_and_forth=true - allow_workspace_cycles=true - pass_mouse_when_bound=false + workspace_back_and_forth = true + allow_workspace_cycles = true + pass_mouse_when_bound = false } #Could help when scaling and not pixelating -- cgit v1.2.3 From 3f39a12eb1eafcc5f054c5411905bf000e96c8ef Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Jun 2024 19:14:47 +0900 Subject: added vfr --- config/hypr/UserConfigs/UserSettings.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index bfee77aa..fe5e92f0 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -143,13 +143,13 @@ group { misc { disable_hyprland_logo = true disable_splash_rendering = true - mouse_move_enables_dpms = true + vfr = true #vrr = 0 + mouse_move_enables_dpms = true enable_swallow = true - no_direct_scanout = true #for fullscreen games - focus_on_activate = false swallow_regex = ^(kitty)$ - #disable_autoreload = true + focus_on_activate = false + no_direct_scanout = true #for fullscreen games initial_workspace_tracking = 0 middle_click_paste = false } -- cgit v1.2.3 From de2c0eaa478df01613e268762ebdc26b05d08473 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Jun 2024 21:36:20 +0900 Subject: updated fastfetch config --- config/fastfetch/config-v2.jsonc | 112 ++++++++++++++++ config/fastfetch/config.jsonc | 267 ++++++++++++++++++--------------------- config/fastfetch/nixos.png | Bin 0 -> 79276 bytes 3 files changed, 235 insertions(+), 144 deletions(-) create mode 100644 config/fastfetch/config-v2.jsonc create mode 100644 config/fastfetch/nixos.png diff --git a/config/fastfetch/config-v2.jsonc b/config/fastfetch/config-v2.jsonc new file mode 100644 index 00000000..cee27fd0 --- /dev/null +++ b/config/fastfetch/config-v2.jsonc @@ -0,0 +1,112 @@ +{ +"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", +"logo": { + //"source": "~/.config/fastfetch/nixos.png", + //"type": "kitty-direct", + "height": 15, + "width": 30, + "padding": { + "top": 1 + } + }, +"display": { + "separator": " ➜ " +}, + +"modules": [ + "break", + { + "type": "os", + "key": " DISTRO", + "keyColor": "31", + }, + { + "type": "kernel", + "key": " ├  ", + "keyColor": "31", + }, + { + "type": "packages", + "key": " ├ 󰏖 ", + "keyColor": "31", + }, + { + "type": "shell", + "key": " └  ", + "keyColor": "31", + }, + "break", + { + "type": "wm", + "key": " DE/WM", + "keyColor": "32", + }, + { + "type": "wmtheme", + "key": " ├ 󰉼 ", + "keyColor": "32", + }, + { + "type": "icons", + "key": " ├ 󰀻 ", + "keyColor": "32", + }, + { + "type": "cursor", + "key": " ├  ", + "keyColor": "32", + }, + { + "type": "terminal", + "key": " ├  ", + "keyColor": "32", + }, + { + "type": "terminalfont", + "key": " └  ", + "keyColor": "32", + }, + "break", + { + "type": "host", + "format": "{2}", + "key": "󰌢 SYSTEM", + "keyColor": "33", + }, + { + "type": "cpu", + "format": "{1} ({3}) @ {7} GHz", + "key": " ├  ", + "keyColor": "33", + }, + { + "type": "gpu", + "format": "{2}", + "key": " ├ 󰢮 ", + "keyColor": "33", + }, + { + "type": "memory", + "key": " ├  ", + "keyColor": "33", + }, + { + "type": "swap", + "key": " ├ 󰓡 ", + "keyColor": "33", + }, + { + "type": "disk", + "key": " ├ 󰋊 ", + "keyColor": "33", + }, + { + "type": "display", + "key": " └  ", + "compactType": "original-with-refresh-rate", + "keyColor": "33", + }, + "break", + "break", +] +} diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc index ae5f1b11..dfbe1c8d 100644 --- a/config/fastfetch/config.jsonc +++ b/config/fastfetch/config.jsonc @@ -1,149 +1,128 @@ -// Load with --load-config examples/2.jsonc -// Note that you must replace the image path to an existing image to display it. { - "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", - "logo": { - "padding": { - "top": 3 - } - }, - "display": { - "separator": " 󰑃 " - }, - "modules": [ - { - "type": "custom", - "format": "\u001b[90m┌────────────────────────────────────────────────────────────┐" - }, - { - "type": "title", - "keyWidth": 10, - "format": " {6}{7}{8}" - }, - { - "type": "custom", - "format": "\u001b[90m└────────────────────────────────────────────────────────────┘" - }, - { - "type": "custom", - "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m  \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " - }, - { - "type": "custom", - "format": "\u001b[90m┌────────────────────────────────────────────────────────────┐" - }, - { - "type": "os", - "key": " DISTRO", - "keyColor": "yellow" - }, - { - "type": "kernel", - "key": "│ ├", - "keyColor": "yellow" - }, - { - "type": "packages", - "key": "│ ├󰏖", - "keyColor": "yellow" - }, - { - "type": "shell", - "key": "│ └", - "keyColor": "yellow" - }, - { - "type": "wm", - "key": " DE/WM", - "keyColor": "blue" - }, - { - "type": "wmtheme", - "key": "│ ├󰉼", - "keyColor": "blue" - }, - { - "type": "icons", - "key": "│ ├󰀻", - "keyColor": "blue" - }, - { - "type": "terminal", - "key": "│ ├", - "keyColor": "blue" - }, - { - "type": "wallpaper", - "key": "│ └󰸉", - "keyColor": "blue" - }, - { - "type": "host", - "key": "󰌢 SYSTEM", - "keyColor": "green" - }, - { - "type": "cpu", - "key": "│ ├󰻠", - "keyColor": "green" - }, - { - "type": "gpu", - "key": "│ ├󰻑", - "format": "{2}", - "keyColor": "green" - }, - { - "type": "display", - "key": "│ ├󰍹", - "keyColor": "green", - "compactType": "original-with-refresh-rate" - }, - { - "type": "memory", - "key": "│ ├󰾆", - "keyColor": "green" - }, - { - "type": "swap", - "key": "│ ├󰓡", - "keyColor": "green" - }, - { - "type": "uptime", - "key": "│ ├󰅐", - "keyColor": "green" - }, - { +"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", +"logo": { +"padding": { +"top": 1 +} +}, +"display": { +"separator": " 󰑃 " +}, +"modules": [ + "break", + { + "type": "os", + "key": " DISTRO", + "keyColor": "yellow" + }, + { + "type": "kernel", + "key": "│ ├", + "keyColor": "yellow" + }, + { + "type": "packages", + "key": "│ ├󰏖", + "keyColor": "yellow" + }, + { + "type": "shell", + "key": "│ └", + "keyColor": "yellow" + }, + { + "type": "wm", + "key": " DE/WM", + "keyColor": "blue" + }, + { + "type": "wmtheme", + "key": "│ ├󰉼", + "keyColor": "blue" + }, + { + "type": "icons", + "key": "│ ├󰀻", + "keyColor": "blue" + }, + { + "type": "cursor", + "key": "│ ├", + "keyColor": "blue", + }, + { + "type": "terminalfont", + "key": "│ ├", + "keyColor": "blue", + }, + { + "type": "terminal", + "key": "│ └", + "keyColor": "blue" + }, + { + "type": "host", + "key": "󰌢 SYSTEM", + "keyColor": "green" + }, + { + "type": "cpu", + "key": "│ ├󰻠", + "keyColor": "green" + }, + { + "type": "gpu", + "key": "│ ├󰻑", + "format": "{2}", + "keyColor": "green" + }, + { "type": "display", - "key": "│ └󰍹", - "keyColor": "green" - }, - { - "type": "sound", - "key": " AUDIO", - "format": "{2}", - "keyColor": "cyan" - }, - { - "type": "player", - "key": "│ ├󰥠", - "keyColor": "cyan" - }, - { - "type": "media", - "key": "│ └󰝚", - "keyColor": "cyan" - }, - { - "type": "custom", - "format": "\u001b[90m└────────────────────────────────────────────────────────────┘" - }, - { - "type": "custom", - "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m  \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " - }, - "break", + "key": "│ ├󰍹", + "keyColor": "green", + "compactType": "original-with-refresh-rate" + }, + { + "type": "memory", + "key": "│ ├󰾆", + "keyColor": "green" + }, + { + "type": "swap", + "key": "│ ├󰓡", + "keyColor": "green" + }, + { + "type": "uptime", + "key": "│ ├󰅐", + "keyColor": "green" + }, + { + "type": "display", + "key": "│ └󰍹", + "keyColor": "green" + }, + { + "type": "sound", + "key": " AUDIO", + "format": "{2}", + "keyColor": "magenta" + }, + { + "type": "player", + "key": "│ ├󰥠", + "keyColor": "magenta" + }, + { + "type": "media", + "key": "│ └󰝚", + "keyColor": "magenta" + }, + { + "type": "custom", + "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m \u001b[39m  \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " + }, + "break", ] } diff --git a/config/fastfetch/nixos.png b/config/fastfetch/nixos.png new file mode 100644 index 00000000..11593f65 Binary files /dev/null and b/config/fastfetch/nixos.png differ -- cgit v1.2.3 From 8962628c0949bac244e4a7692f11f56e75589719 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 24 Jun 2024 18:55:26 +0900 Subject: updated hyprlock --- config/hypr/hyprlock.conf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/hypr/hyprlock.conf b/config/hypr/hyprlock.conf index 94dc6375..e4362eab 100644 --- a/config/hypr/hyprlock.conf +++ b/config/hypr/hyprlock.conf @@ -51,8 +51,7 @@ label { text = cmd[update:18000000] echo " "$(date +'%A, %-d %B %Y')" " color = $color12 font_size = 34 - font_family = JetBrains Mono Nerd Font 10 - + font_family = JetBrains Mono Nerd Font Mono ExtraBold position = 0, -150 halign = center valign = top @@ -64,7 +63,7 @@ label { text = cmd[update:18000000] echo " "$(date +'Week %U')" " color = $color5 font_size = 24 - font_family = JetBrains Mono Nerd Font 10 + font_family = JetBrains Mono Nerd Font Mono ExtraBold position = 0, -250 halign = center valign = top @@ -76,9 +75,8 @@ label { #text = cmd[update:1000] echo " $(date +"%I:%M:%S %p") " # AM/PM text = cmd[update:1000] echo " $(date +"%H:%M:%S") " # 24H color = $color15 - font_size = 94 - font_family = JetBrains Mono Nerd Font 10 - + font_size = 150 + font_family = AlfaSlabOne position = 0, 0 halign = center valign = center @@ -103,19 +101,21 @@ label { text = cmd[update:60000] echo " "$(uptime -p || $Scripts/UptimeNixOS.sh)" " color = $color12 font_size = 24 - font_family = JetBrains Mono Nerd Font 10 + font_family = JetBrains Mono Nerd Font Mono ExtraBold position = 0, 0 halign = right valign = bottom } -# weather edit specific location. Note, this cause a 2-4 seconds delay in locking +# 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 label { monitor = text = cmd[update:3600000] [ -f ~/.cache/.weather_cache ] && cat ~/.cache/.weather_cache color = $color12 font_size = 24 - font_family = JetBrains Mono Nerd Font 10 + font_family = JetBrains Mono Nerd Font Mono ExtraBold position = 50, 0 halign = left valign = bottom -- cgit v1.2.3 From 7e692f93f2d2a1e1de57bfca4571ec5a26ba4355 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 26 Jun 2024 07:46:31 +0900 Subject: network speed waybar module switched to bytes from bits --- config/waybar/modules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/waybar/modules b/config/waybar/modules index 4590e8c9..3132cc46 100644 --- a/config/waybar/modules +++ b/config/waybar/modules @@ -487,8 +487,8 @@ "network#speed": { "interval": 1, "format": "{ifname}", - "format-wifi": "{icon}  {bandwidthUpBits}  {bandwidthDownBits}", - "format-ethernet": "󰌘  {bandwidthUpBits}  {bandwidthDownBits}", + "format-wifi": "{icon}  {bandwidthUpBytes}  {bandwidthDownBytes}", + "format-ethernet": "󰌘  {bandwidthUpBytes}  {bandwidthDownBytes}", "format-disconnected": "󰌙", "tooltip-format": "{ipaddr}", "format-linked": "󰈁 {ifname} (No IP)", -- cgit v1.2.3