nixos-dotfiles

nixos-dotfiles

https://git.tonybtw.com/nixos-dotfiles.git git://git.tonybtw.com/nixos-dotfiles.git
823 bytes raw
1
configuration {
2
    modi: "drun,run";
3
    show-icons: false;
4
    font: "monospace 10";
5
    fullscreen: false;
6
    dpi: 96;
7
}
8
9
* {
10
    background: #2E3440;  /* Nord0 */
11
    foreground: #D8DEE9;  /* Nord4 */
12
    selected-background: #88C0D0; /* Nord8 */
13
    selected-foreground: #2E3440; /* Nord0 */
14
    border: 0;
15
    padding: 6;
16
    spacing: 5;
17
    width: 50%;
18
}
19
20
window {
21
    location: center;
22
    border-radius: 6px;
23
}
24
25
inputbar {
26
    background: @background;
27
    text-color: @foreground;
28
    padding: 10px;
29
    border-radius: 6px;
30
}
31
32
listview {
33
    padding: 5px;
34
    lines: 10;
35
}
36
37
element {
38
    background: transparent;
39
    text-color: @foreground;
40
}
41
42
element selected {
43
    background: @selected-background;
44
    text-color: @selected-foreground;
45
    border-radius: 4px;
46
}
47
48
@theme "/usr/share/rofi/themes/DarkBlue.rasi"