~kris/dots

srice

ref: e98f3b030dc24445bd55c68d95d2d81933fd68b3 srice/.config/rofi/clipboard_menu.rasi -rw-r--r-- 1.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@import "~/.config/rofi/colors.rasi"

configuration {
    show-icons: false;
}

* {
    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: 700px;
    transparency: "real";
    location: center;
    anchor: center;
}

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

inputbar {
    background-color: transparent;
    border: 1px solid;
    border-color: @outline;
    border-radius: 0px;
    padding: 14px 16px;
    spacing: 10px;
    children: [ prompt, entry ];
    margin: 0px 0px 8px 0px;
}

prompt {
    text-color: @on-surface;
}

entry {
    placeholder: "Search Clipboard...";
    placeholder-color: @outline-variant;
    text-color: @on-surface;
}

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

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;
    highlight: @primary;
    vertical-align: 0.5;
}