From 26817ca76887d6e40786386a3521a81de9cbe459 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 1 Dec 2023 09:29:15 +0900 Subject: bump 2.1.13 --- config/hypr/v2.1.12 | 5 ----- config/hypr/v2.1.13 | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 config/hypr/v2.1.12 create mode 100644 config/hypr/v2.1.13 (limited to 'config/hypr') diff --git a/config/hypr/v2.1.12 b/config/hypr/v2.1.12 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.1.12 +++ /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.1.13 b/config/hypr/v2.1.13 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.1.13 @@ -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 -- cgit v1.2.3 From 5004a2b8cf65e524d5d9b3b4fe8f1dce95554696 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 1 Dec 2023 18:30:47 +0900 Subject: small adjustment on dunst --- config/dunst/dunstrc | 14 +++++++------- config/hypr/scripts/DarkLight.sh | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'config/hypr') diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc index 58734275..e20c4cc8 100755 --- a/config/dunst/dunstrc +++ b/config/dunst/dunstrc @@ -70,7 +70,7 @@ frame_width = 2 # Defines color of the frame around the notification window. - frame_color = "#7F8153" + frame_color = "#3C27C7" # Define a color for the separator. # possible values are: @@ -282,24 +282,24 @@ # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. background = "#00000080" - foreground = "#FFFFFF90" - frame_color = "#7F8153" + foreground = "#fafafa" + frame_color = "#3C27C7" timeout = 2 # Icon for notifications with low urgency, uncomment to enable icon = $HOME/.config/dunst/images/bell.png [urgency_normal] background = "#00000080" - foreground = "#FFFFFF90" - frame_color = "#7F8153" + foreground = "#fafafa" + frame_color = "#3C27C7" timeout = 5 # Icon for notifications with normal urgency, uncomment to enable icon = $HOME/.config/dunst/images/bell.png [urgency_critical] background = "#00000080" - foreground = "#FFFFFF90" - frame_color = "#7F8153" + foreground = "#fafafa" + frame_color = "#3C27C7" timeout = 0 # Icon for notifications with critical urgency, uncomment to enable icon = $HOME/.config/dunst/images/bell.png diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index fc75bf74..2072e1be 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -47,10 +47,10 @@ notify_user "$next_mode" # Change background for dunst if [ "$next_mode" = "dark" ]; then sed -i '/background = /s/.*/ background = "#00000080"/' "${dunst_config}/dunstrc" - sed -i '/foreground = /s/.*/ foreground = "#FFFFFF90"/' "${dunst_config}/dunstrc" + sed -i '/foreground = /s/.*/ foreground = "#fafafa"/' "${dunst_config}/dunstrc" else sed -i '/background = /s/.*/ background = "#FFFFFF80"/' "${dunst_config}/dunstrc" - sed -i '/foreground = /s/.*/ foreground = "#00000090"/' "${dunst_config}/dunstrc" + sed -i '/foreground = /s/.*/ foreground = "#00000095"/' "${dunst_config}/dunstrc" fi # Symlink for rofi theme -- cgit v1.2.3 From 64fcb6cf3cc2a37576007369b43e9b987ff9903a Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 2 Dec 2023 13:07:51 +0900 Subject: enabled numlock by default. tnx Jack --- config/hypr/configs/Settings.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hypr') diff --git a/config/hypr/configs/Settings.conf b/config/hypr/configs/Settings.conf index fe3ad2a6..b40eba67 100644 --- a/config/hypr/configs/Settings.conf +++ b/config/hypr/configs/Settings.conf @@ -97,7 +97,7 @@ input { kb_rules= repeat_rate=50 repeat_delay=300 - numlock_by_default=0 + numlock_by_default=1 left_handed=0 follow_mouse=1 float_switch_override_focus=0 -- cgit v1.2.3