summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorPeter2020-09-07 22:57:26 +0100
committerPeter2020-09-07 22:57:26 +0100
commitac58af896feca516389da89332feec70eb0e52b6 (patch)
treeb6ffd3aef5c5626041b6c9df4f2d82a624c3bb3f /.config
parent07580599467c8941f2987d8c9f8937799fa65cf6 (diff)
downloaddotfiles-ac58af896feca516389da89332feec70eb0e52b6.tar.gz
dotfiles-ac58af896feca516389da89332feec70eb0e52b6.tar.bz2
dotfiles-ac58af896feca516389da89332feec70eb0e52b6.zip
Preliminary launcher rofi config
Diffstat (limited to '.config')
-rw-r--r--.config/rofi/launcher.rasi59
1 files changed, 59 insertions, 0 deletions
diff --git a/.config/rofi/launcher.rasi b/.config/rofi/launcher.rasi
new file mode 100644
index 0000000..d584fa0
--- /dev/null
+++ b/.config/rofi/launcher.rasi
@@ -0,0 +1,59 @@
+
+configuration {
+ modi: "drun";
+ click-to-exit: true;
+ show-icons: false;
+ cycle: false;
+ m: "-1";
+ scroll-method: 0;
+}
+
+
+* {
+ background: #1d1f21;
+ font: "Noto 10";
+ text-color: #eceff4;
+ background-color: @background;
+ padding: 10px;
+}
+
+#window {
+ width: 30%;
+ /* y-offset: 10%; */
+}
+
+#mainbox {
+ /* spacing: 0px; */
+ children: [inputbar, listview];
+}
+
+#textbox {
+ text-color: #1d1f21;
+ background-color: @background;
+}
+
+#listview {
+ fixed-height: false;
+ dynamic: true;
+ lines: 10;
+ spacing: 0px;
+ padding: 0px -10px;
+}
+
+#element {
+ border: 0;
+ padding: 10px;
+}
+
+#element selected {
+ text-color: #5f819d;
+}
+
+#inputbar {
+ children: [entry];
+ spacing: 0px;
+}
+
+#entry {
+ padding: 1px 0px;
+}