-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotkey-rofi.rasi
75 lines (63 loc) · 1.65 KB
/
hotkey-rofi.rasi
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
@import "default"
configuration {
display-run: "ラン";
display-window: "まど";
display-ssh: "シェル";
display-drun: "アプリ";
}
* {
bg-col: #1e1e2e;
bg-col2: #11111b;
border-col: #1e1e2e;
selected-col: #6C7086;
blue: #89b4fa;
fg-col: #cdd6f4;
fg-col2: #f38ba8;
grey: #6c7086;
font: "FiraCode Nerd Font 14";
}
window {
width: 380px;
border: 2px;
background-color: @bg-col2;
}
mainbox {
spacing: 4px;
children: ["inputbar", "listview"];
}
inputbar {
background-color: @bg-col;
text-color: @fg-col;
children: ["entry"];
}
listview {
lines:5;
spacing: 4px;
scrollbar: false;
border: 0px;
}
element {
padding:0px;
children: ["element-text"];
}
element-text {
background-color: @bg-col;
text-color: @fg-col;
}
element-text selected {
background-color: @selected-col;
}
entry {
placeholder: "Search";
text-color: @fg-col;
}
button {
padding: 3px;
border-radius: 10px;
margin: 40px 20px 15px 10px;
background-color: #1e1e2e;
text-color: @fg-col;
}
button selected {
background-color: @selected-col;
}