summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/rofi/wallpaper.rasi94
1 files changed, 94 insertions, 0 deletions
diff --git a/.config/rofi/wallpaper.rasi b/.config/rofi/wallpaper.rasi
new file mode 100644
index 0000000..1d4066f
--- /dev/null
+++ b/.config/rofi/wallpaper.rasi
@@ -0,0 +1,94 @@
+configuration {
+ font: "JetBrainsMono Nerd Font 12";
+ show-icons: true;
+ hover-select: true;
+ me-select-entry: "";
+ me-accept-entry: "MousePrimary";
+}
+
+* {
+ background-color: #1F1F1F;
+ text-color: #FFFFFF;
+ border-color: #FFFFFF;
+}
+
+window {
+ anchor: east;
+ location: east;
+ width: 320px;
+ height: 70%;
+ x-offset: -15px;
+ y-offset: 0px;
+ background-color: #1F1F1F;
+ border: 1px;
+ border-radius: 0px;
+ border-color: #FFFFFF;
+}
+
+mainbox {
+ background-color: transparent;
+ spacing: 0px;
+ padding: 5px;
+ children: [ "inputbar", "listview" ];
+}
+
+inputbar {
+ background-color: transparent;
+ text-color: #FFFFFF;
+ padding: 4px 0px;
+ spacing: 0;
+ children: [ "prompt", "entry" ];
+}
+
+prompt {
+ background-color: transparent;
+ text-color: #FFFFFF;
+ padding: 0px 4px 0px 0px;
+ content: ">";
+}
+
+entry {
+ background-color: transparent;
+ text-color: #FFFFFF;
+ placeholder: "";
+ cursor: default;
+}
+
+listview {
+ background-color: transparent;
+ columns: 1;
+ lines: 5;
+ spacing: 2px;
+ cycle: true;
+ fixed-height: false;
+ scrollbar: false;
+ border: 0;
+}
+
+element {
+ orientation: vertical;
+ background-color: transparent;
+ padding: 0px;
+ border-radius: 0px;
+ cursor: default;
+}
+
+element selected {
+ background-color: transparent;
+ border: 2px;
+ border-color: #FFFFFF;
+}
+
+element-icon {
+ background-color: transparent;
+ size: 170px;
+ horizontal-align: 0.5;
+ cursor: default;
+}
+
+element-text {
+ enabled: false;
+ width: 0px;
+ padding: 0px;
+ margin: 0px;
+}