aboutsummaryrefslogtreecommitdiff
path: root/Common/rofi/launchers/text/style_4.rasi
diff options
context:
space:
mode:
authorjakobst1n <jakob.stendahl@outlook.com>2021-04-28 14:36:31 +0200
committerjakobst1n <jakob.stendahl@outlook.com>2021-04-28 14:36:31 +0200
commit82e7ae32867c9f46576d99fdc78bc0185410fe47 (patch)
treefd8764e91741f90967801e0e254aafeeb847d031 /Common/rofi/launchers/text/style_4.rasi
parent045c955f835fdb11983117ca6e27aa4543de4109 (diff)
downloaddotfiles-82e7ae32867c9f46576d99fdc78bc0185410fe47.tar.gz
dotfiles-82e7ae32867c9f46576d99fdc78bc0185410fe47.zip
Do some mods and add i3 things
Diffstat (limited to 'Common/rofi/launchers/text/style_4.rasi')
-rw-r--r--Common/rofi/launchers/text/style_4.rasi179
1 files changed, 179 insertions, 0 deletions
diff --git a/Common/rofi/launchers/text/style_4.rasi b/Common/rofi/launchers/text/style_4.rasi
new file mode 100644
index 0000000..4b81aa8
--- /dev/null
+++ b/Common/rofi/launchers/text/style_4.rasi
@@ -0,0 +1,179 @@
+/*
+ *
+ * Author : Aditya Shakya
+ * Mail : adi1090x@gmail.com
+ * Github : @adi1090x
+ * Twitter : @adi1090x
+ *
+ */
+
+configuration {
+ lines: 15;
+ columns: 1;
+ font: "Iosevka Nerd Font 12";
+ bw: 0;
+ location: 1;
+ padding: 0;
+ fixed-num-lines: true;
+ show-icons: false;
+ sidebar-mode: true;
+ separator-style: "none";
+ hide-scrollbar: true;
+ fullscreen: false;
+ fake-transparency: false;
+ scroll-method: 0;
+ window-format: "[{w}] ··· {c} ··· {t}";
+ click-to-exit: true;
+ show-match: false;
+ combi-hide-mode-prefix: false;
+ display-window: "";
+ display-windowcd: "";
+ display-run: "";
+ display-ssh: "";
+ display-drun: "";
+ display-combi: "";
+}
+
+@import "styles/colors.rasi"
+
+* {
+ background-color: @bg;
+}
+
+window {
+ border: 0px;
+ border-color: @ac;
+ border-radius: 0px;
+ padding: 30;
+ width: 20%;
+ height: 100%;
+}
+
+prompt {
+ spacing: 0;
+ border: 0;
+ text-color: @fg;
+}
+
+textbox-prompt-colon {
+ expand: false;
+ str: " ";
+ margin: 0px 4px 0px 0px;
+ text-color: inherit;
+}
+
+entry {
+ spacing: 0;
+ text-color: @fg;
+}
+
+case-indicator {
+ spacing: 0;
+ text-color: @fg;
+}
+
+inputbar {
+ spacing: 0px;
+ text-color: @fg;
+ padding: 1px;
+ children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
+}
+
+mainbox {
+ border: 0px;
+ border-color: @ac;
+ padding: 6;
+}
+
+listview {
+ fixed-height: 0;
+ border: 0px;
+ border-color: @ac;
+ spacing: 4px;
+ scrollbar: false;
+ padding: 15px 5px 0px 5px;
+}
+
+element {
+ border: 0px;
+ border-radius: 4px;
+ padding: 5px;
+}
+element normal.normal {
+ background-color: @bg;
+ text-color: @fg;
+}
+element normal.urgent {
+ background-color: @bg;
+ text-color: @red;
+}
+element normal.active {
+ background-color: @green;
+ text-color: @bg;
+}
+element selected.normal {
+ background-color: @ac;
+ text-color: @bg;
+}
+element selected.urgent {
+ background-color: @bg;
+ text-color: @red;
+}
+element selected.active {
+ background-color: @ac;
+ text-color: @bg;
+}
+element alternate.normal {
+ background-color: @bg;
+ text-color: @fg;
+}
+element alternate.urgent {
+ background-color: @bg;
+ text-color: @fg;
+}
+element alternate.active {
+ background-color: @bg;
+ text-color: @fg;
+}
+
+sidebar {
+ border: 0px;
+ border-color: @ac;
+ border-radius: 0px;
+}
+
+button {
+ background-color: @red;
+ margin: 5px;
+ padding: 5px;
+ text-color: @fg;
+ border: 0px;
+ border-radius: 4px;
+ border-color: @fg;
+}
+
+button selected {
+ background-color: @green;
+ text-color: @fg;
+ border: 0px;
+ border-radius: 4px;
+ border-color: @fg;
+}
+
+scrollbar {
+ width: 4px;
+ border: 0px;
+ handle-color: @fg;
+ handle-width: 8px;
+ padding: 0;
+}
+
+message {
+ border: 0px;
+ border-color: @ac;
+ padding: 1px;
+}
+
+textbox {
+ text-color: @fg;
+}