blob: 1420457493f542e56d812055bc7e232152be593e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{ config, pkgs, ... }:
let
hidpi = config.custom.hidpi;
in {
home.packages = with pkgs; [
twmn
libnotify
];
systemd.user.services.twmnd = {
Unit = {
Description = "twmn notification deamon";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
Environment = "PATH=%h/.nix-profile/bin";
ExecStart = "${pkgs.twmn}/bin/twmnd";
Restart = "on-failure";
};
};
home.file.".config/twmn/twmn.conf".text = ''
[gui]
background_color=#909737
font=Iosevka
font_size=${if hidpi then "24" else "14"}
height=${if hidpi then "32" else "20"}
foreground_color=#111111
always_on_top=true
position=bottom_right
bounce=true
bounce_duration=500
in_animation=6
in_animation_duration=500
out_animation=5
out_animation_duration=500
max_length=-1
opacity=100
[main]
duration=5000
host=127.0.0.1
port=9797
'';
}
|