all repos

dotfiles @ 246dc34d130d2b6d656dcaa382c5bb47b531b91c

my dotfiles

config/rofi/themes/nten-dmenu.rasi (view raw)

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
* {
    background-color:           #262A2B;
    text-color:                 #93A1A1;
    font:                       "Hack 9";
    prompt-padding:             4px;
    selected-background:        #008DCD;
    selected-foreground:        #ffffff;
}
#window {
    width: 100%;
    height: 24px;
    padding: 0px;
    children: [ horibox ];
}
#horibox {
    orientation: horizontal;
    children: [ prompt, entry, listview ];
}
#prompt {
    padding:          @prompt-padding;
    background-color: @selected-background;
    text-color:       @selected-foreground;
    font:             @font;
}
#listview {
    layout: horizontal;
    spacing: 0px;
    fixed-height: false;
    dynamic: true;
    lines: 100;
}
#entry {
    padding: 4px 4px;
    expand: false;
    width: 170px;
}
#element { padding: 4px 8px; }
#element selected {
    background-color: @selected-background;
    text-color:       @selected-foreground;
}