From 593895c78b020f0b5c4c641afa6326506d13d078 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 8 Feb 2026 16:01:58 +0100 Subject: [PATCH] feat: dunst daemon config --- .config/dunst/dunstrc | 17 +++++++++++++++++ .config/hypr/hyprland.conf | 2 +- .config/nvim/lua/finder.lua | 8 ++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .config/dunst/dunstrc diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..f3e8493 --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,17 @@ +[global] +frame_color = "#89b4fa" +separator_color= frame +highlight = "#89b4fa" + +[urgency_low] +background = "#1e1e2e" +foreground = "#cdd6f4" + +[urgency_normal] +background = "#1e1e2e" +foreground = "#cdd6f4" + +[urgency_critical] +background = "#1e1e2e" +foreground = "#cdd6f4" +frame_color = "#fab387" diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 105d859..212f4ad 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -29,7 +29,7 @@ exec-once = swayosd-server exec-once = wl-paste -t text --watch clipman store --no-persist exec-once = elephant exec-once = walker --gapplication-service -exec-once = swaync +exec-once = dunst exec-once = waybar & hyprpaper diff --git a/.config/nvim/lua/finder.lua b/.config/nvim/lua/finder.lua index b33f42d..3e370f3 100644 --- a/.config/nvim/lua/finder.lua +++ b/.config/nvim/lua/finder.lua @@ -15,3 +15,11 @@ if not ok then return end +telescope.setup { + pickers = { + find_files = { + hidden = true + } + } +} +