~kris/dots

srice

srice/.config/rofi/powermenu.rasi -rw-r--r-- 1.1 KiB
e98f3b03 — Kris Yotam chore: sync local state after restore (push updates, no pull) a month ago
                                                                                
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
54
55
56
57
58
59
60
61
62
63
@import "~/.config/rofi/colors.rasi"

* {
    font: "JetBrainsMono Nerd Font 13";
    background-color: transparent;
    text-color: @on-surface;
    margin: 0;
    padding: 0;
    spacing: 0;
}

window {
    background-color: @on-primary;
    border: 1px solid;
    border-color: @outline;
    border-radius: 0px;
    padding: 10px;
    width: 300px;
    transparency: "real";
    location: center;
    anchor: center;
}

mainbox {
    spacing: 0px;
    children: [ listview ];
}

listview {
    columns: 1;
    lines: 4;
    fixed-height: true;
    fixed-columns: true;
    cycle: true;
    scrollbar: false;
    spacing: 8px;
}

element {
    padding: 14px 16px;
    spacing: 12px;
    border-radius: 0px;
    cursor: pointer;
    background-color: transparent;
    text-color: @on-surface;
    border: 1px solid;
    border-color: @outline-variant;
}

element selected.normal {
    background-color: transparent;
    text-color: @on-primary-container;
    border-color: @primary;
    border: 2px solid;
}

element-text {
    cursor: inherit;
    background-color: inherit;
    text-color: inherit;
    horizontal-align: 0.4;
    vertical-align: 0.5;
}