diff --git a/nixos/gui.nix b/nixos/gui.nix index 3b91282f..4451d180 100644 --- a/nixos/gui.nix +++ b/nixos/gui.nix @@ -8,6 +8,7 @@ fontconfig xclip gimp glxinfo notable evince signal-desktop libreoffice vlc + unstable.tor-browser-bundle-bin jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt slack discord obs-studio gnome3.nautilus gnome3.eog diff --git a/nixos/i3/dunst.nix b/nixos/i3/dunst.nix index ee14100c..078ff8ca 100644 --- a/nixos/i3/dunst.nix +++ b/nixos/i3/dunst.nix @@ -4,26 +4,47 @@ enable = true; settings = { global = { - frame_color = "#93a1a1"; - separator_color = "#93a1a1"; + font = "DejaVu Sans Mono for Powerline 10"; + sort = "yes"; + indicate_hidden = "yes"; + word_wrap = "yes"; + stack_duplicates = "yes"; + hide_duplicates_count = "yes"; + geometry = "300x50-15+49"; + shrink = "no"; + transparency = 5; + line_height = 3; + padding = 6; + horizontal_padding = 6; + separator_color = "frame"; + icon_position = "off"; + max_icon_size = 80; + frame_width = 3; + frame_color = "#8EC07C"; }; low = { msg_urgency = "low"; - background = "#073642"; - foreground = "#657b83"; + frame_color = "#3B7C87"; + foreground = "#3B7C87"; + background = "#191311"; + timeout = 3; }; normal = { msg_urgency = "normal"; - background = "#586e75"; - foreground = "#93a1a1"; + frame_color = "#5B8234"; + foreground = "#5B8234"; + background = "#191311"; + timeout = 5; }; critical = { msg_urgency = "critical"; - background = "#dc322f"; - foreground = "#eee8d5"; + frame_color = "#B7472A"; + foreground = "#B7472A"; + background = "#191311"; + timeout = 8; }; }; };