Update Dunst and sxhkd

This commit is contained in:
Filippo Berto 2023-01-02 19:09:32 +01:00
parent f17bfe4aa3
commit 53f62e4cd5
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 28 additions and 53 deletions

View file

@ -8,55 +8,22 @@ in
enable = true;
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-dark";
name = "Qogir";
};
settings = {
global = {
monitor = 0;
follow = "mouse";
geometry = "300x6-20+50";
indicate_hidden = false;
shrink = "yes";
transparency = 10;
notification_height = 0;
separator_height = 2;
padding = 8;
horizontal_padding = 8;
frame_width = 2;
frame_color = strPalette.normal.black;
width = "(0, 320)";
height = 320;
notification_limit = 10;
transparency = 100 - float.round (pkgs.rice.opacity * 100);
frame_width = 1;
frame_color = strPalette.normal.blue;
separator_color = strPalette.normal.blue;
sort = "yes";
idle_threshold = 120;
font = "${pkgs.rice.font.normal.name} 10";
line_height = 0;
markup = "full";
format = "<b>%s</b>\\n%b";
alignment = "left";
show_age_threshold = 60;
word_wrap = "yes";
ellipsize = "middle";
ignore_newline = "no";
stack_duplicates = "true";
hide_duplicate_count = "false";
show_indicators = true;
icon_position = "off";
max_icon_size = 32;
sticky_history = "yes";
history_length = 20;
dmenu = "rofi -dmenu -p dunst:";
# browser = "google-chrome-stable";
browser = "firefox";
always_run_script = "true";
title = "Dunst";
class = "Dunst";
startup_notification = "false";
verbosity = "mesg";
corner_radius = 0;
force_xinerama = "false";
mouse_left_click = "close_current";
dmenu = "${pkgs.rofi}/bin/rofi -dmenu -p dunst:";
browser = "${pkgs.xdg-utils}/bin/xdg-open";
# corner_radius = 8;
mouse_middle_click = "context";
mouse_right_click = "close_all";
};
urgency_low = {
inherit (strPalette) background foreground;
@ -72,10 +39,10 @@ in
timeout = 0;
};
shortcuts = {
close = "ctrl+space";
close_all = "ctrl+shift+space";
history = "ctrl+backslash";
context = "ctrl+shift+period";
# close = "ctrl+space";
# close_all = "ctrl+shift+space";
# history = "ctrl+backslash";
# context = "ctrl+shift+period";
};
};
};