From b2be1d98729423be4be2fa445ccdb043ee936375 Mon Sep 17 00:00:00 2001
From: ayushDumasia <220170107033@gmail.com>
Date: Mon, 17 Mar 2025 18:27:46 +0530
Subject: [PATCH] Changes in: hypr,waybar,
---
dunst/dunstrc | 107 ++++++++++++++++++++++++++++++++++++++++
hypr/hyprland.conf | 11 ++---
waybar/style_backup.css | 6 ++-
3 files changed, 117 insertions(+), 7 deletions(-)
create mode 100755 dunst/dunstrc
diff --git a/dunst/dunstrc b/dunst/dunstrc
new file mode 100755
index 0000000..46efb9f
--- /dev/null
+++ b/dunst/dunstrc
@@ -0,0 +1,107 @@
+[global]
+ monitor = 0
+ follow = mouse
+ width = 350
+ height = (0,100)
+ origin = top-right
+ offset = 18x18
+
+ # Progress Bar
+ progress_bar = true
+ progress_bar_height = 8
+ progress_bar_frame_width = 2
+ progress_bar_min_width = 150
+ progress_bar_max_width = 1000
+ progress_bar_corner_radius = 2
+ progress_bar_background = "#313244"
+ progress_bar_color = "#a6e3a1"
+
+ # Notification Layout
+ notification_limit = 2
+ indicate_hidden = true
+ shrink = no
+ separator_height = 2
+ separator_color = "#313244"
+ padding = 15
+ horizontal_padding = 15
+ frame_width = 1
+ frame_color = "#cdd6f4"
+ corner_radius = 6
+ sort = yes
+ idle_threshold = 120
+
+ # Font and Text
+ font = JetbrainsMono Nerd Font Mono 12
+ line_height = 1.2
+ markup = full
+ format = "%s\n%b"
+ alignment = left
+ vertical_alignment = center
+ show_age_threshold = 60
+ word_wrap = yes
+ ellipsize = middle
+ ignore_newline = yes
+ stack_duplicates = true
+ hide_duplicate_count = false
+ show_indicators = false
+
+ # Icons
+ icon_position = right
+ min_icon_size = 50
+ max_icon_size = 70
+ icon_path = $HOME/.local/share/fonts/
+
+ # Behavior
+ sticky_history = no
+ history_length = 20
+ always_run_script = true
+ title = Dunst
+ class = Dunst
+ ignore_dbusclose = false
+ force_xwayland = false
+ force_xinerama = false
+
+ # Mouse Actions
+ mouse_left_click = do_action, close_current
+ mouse_middle_click = do_action, close_current
+ mouse_right_click = close_all
+
+[experimental]
+ per_monitor_dpi = false
+
+[urgency_low]
+ background = "#1e1e2e" # Mocha Base
+ foreground = "#cdd6f4" # Mocha Text
+ highlight = "#89b4fa" # Mocha Blue for highlight
+ frame_color = "#313244" # Mocha Surface0 for frame
+ timeout = 5
+ border_color = "#89b4fa" # Mocha Blue for border
+ border_width = 1
+
+[urgency_normal]
+ background = "#1e1e2e" # Mocha Base
+ foreground = "#cdd6f4" # Mocha Text
+ highlight = "#a6e3a1" # Mocha Green for highlight
+ frame_color = "#313244" # Mocha Surface0 for frame
+ timeout = 5
+ border_color = "#a6e3a1" # Mocha Green for border
+ border_width = 1
+
+[urgency_critical]
+ background = "#1e1e2e" # Mocha Base
+ foreground = "#cdd6f4" # Mocha Text
+ highlight = "#f38ba8" # Mocha Red for highlight
+ frame_color = "#f38ba8" # Mocha Red for frame
+ timeout = 10
+ border_color = "#f38ba8" # Mocha Red for border
+ border_width = 1
+
+[volume]
+ highlight = "#a6e3a1" # Mocha Green
+ icon_size = 60
+ icon_position = right
+
+[backlight]
+ highlight = "#f5c2e7" # Mocha Pink
+ icon_size = 60
+ icon_position = right
\ No newline at end of file
diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf
index fd3aeec..868faad 100644
--- a/hypr/hyprland.conf
+++ b/hypr/hyprland.conf
@@ -154,8 +154,6 @@ bind = $mainMod_Shift, T, exec, [float; size 1000 500] $terminal
$key = tab
$mod = super
-bind = $mod , $key, exec, hyprswitch gui --mod-key $mod --key $key --max-switch-offset 9 --hide-active-window-border
-# bind = $mainMod , J, exec, hyprswitch gui --mod-key $mainMod --key J --max-switch-offset 9 --hide-active-window-border
#Yazi File Manager
@@ -194,10 +192,11 @@ bindl = , XF86AudioPrev, exec, playerctl previous
bindl = , XF86AudioNext, exec, playerctl next
#Brightness Control
-#binde = , XF86MonBrightnessDown, exec, ~/.local/bin/backlight.sh down
-binde = , XF86MonBrightnessDown, exec, brightnessctl set 2%-
-#binde = , XF86MonBrightnessUp, exec, ~/.local/bin/backlight.sh up
-binde = , XF86MonBrightnessUp, exec, brightnessctl set +2%
+binde = , XF86MonBrightnessDown, exec, ~/.local/bin/backlight.sh down
+binde = , XF86MonBrightnessUp, exec, ~/.local/bin/backlight.sh up
+
+# binde = , XF86MonBrightnessDown, exec, brightnessctl set 2%-
+# binde = , XF86MonBrightnessUp, exec, brightnessctl set +2%
bind = Alt, Tab , cyclenext
diff --git a/waybar/style_backup.css b/waybar/style_backup.css
index 5e6a917..7c83933 100755
--- a/waybar/style_backup.css
+++ b/waybar/style_backup.css
@@ -1,12 +1,16 @@
@import 'mocha.css';
+:root {
+ --border-radius: 100px;
+}
+
/* reset all styles */
* {
font-family: JetBrains Mono Nerd Font;
min-height: 18px;
font-size: 12px;
border: none;
- /* border-radius: 2px; */
+ border-radius: var(--border-radius);
padding: 0;
margin: 0;
box-shadow: none;