summaryrefslogtreecommitdiff
path: root/rofi/iconic.rasi
diff options
context:
space:
mode:
Diffstat (limited to 'rofi/iconic.rasi')
-rw-r--r--rofi/iconic.rasi119
1 files changed, 119 insertions, 0 deletions
diff --git a/rofi/iconic.rasi b/rofi/iconic.rasi
new file mode 100644
index 0000000..a2c8388
--- /dev/null
+++ b/rofi/iconic.rasi
@@ -0,0 +1,119 @@
+configuration {
+ display-drun: "";
+ display-run: "";
+ display-window: "";
+ drun-display-format: "{name}";
+ icon-theme: "Papirus";
+ fixed-num-lines: true;
+ font: "FiraSans Regular 14";
+}
+
+@import "colors"
+
+window {
+ width: 20em;
+ spacing: 0;
+ transparency: "real";
+ background-color: @bg;
+ padding: 0em;
+ border: 0;
+ border-color: @transparent;
+ border-radius: 2;
+}
+
+mainbox {
+ background-color: @transparent;
+}
+
+inputbar {
+ background-color: @bg;
+ text-color: @fg;
+ border-color: @border;
+ children: [prompt, entry];
+ padding: 0;
+ border: 0;
+ margin: 0 0 0em 0;
+ border-radius: 2;
+}
+
+prompt {
+ background-color: inherit;
+ text-color: @fg;
+ padding: 1em 0.75em;
+ border-radius: 2;
+}
+
+entry {
+ background-color: inherit;
+ text-color: @fg;
+ placeholder: "Search...";
+ padding: 1em 0 1em 0;
+ width: 10%;
+ horizontal-align: 0.013;
+ vertical-align: 0;
+ border: 0;
+ border-radius: 2;
+}
+
+listview {
+ background-color: @transparent;
+ text-color: @fg;
+ cycle: false;
+ dynamic: true;
+ border: 0;
+ border-radius: 2;
+ layout: vertical;
+ spacing: 0.1em;
+ lines: 6;
+ columns: 1;
+}
+
+element {
+ background-color: @bg;
+ text-color: @fg;
+ border: 0;
+ border-radius: 0;
+ orientation: horizontal;
+}
+
+element-icon {
+ background-color: @transparent;
+ border: 0;
+ border-radius: 0;
+ size: 28px;
+ padding: 0.25em 0.5em;
+ horizontal-align: 0.5;
+ vertical-align: 0.5;
+}
+
+element-text {
+ background-color: @transparent;
+ text-color: @fg;
+ text-size: 6;
+ border: 0;
+ border-radius: 0;
+ padding: 0.2em 0.2em 0.2em 0;
+ horizontal-align: 0;
+ vertical-align: 0.5;
+}
+
+element selected {
+ background-color: @bg2;
+ text-color: @fg2;
+ border-color: @bg2;
+ border: 1;
+ border-radius: 0;
+}
+
+element-text selected {
+ background-color: @bg2;
+ text-color: @fg2;
+ border-color: @bg2;
+ border: 0;
+}
+element-icon selected {
+ background-color: @bg2;
+ text-color: @fg2;
+ border-color: @bg2;
+ border: 0;
+}