Update: Added rofi configs, dunst config and icons.

This commit is contained in:
Keyitdev
2025-07-31 11:15:25 +02:00
parent beb1d80f7b
commit 764e3915a3
21 changed files with 703 additions and 52 deletions
+10
View File
@@ -0,0 +1,10 @@
/* colors */
* {
al: #00000000;
bg: #1b1b25;
se: #282a36;
fg: #dedede;
ac: #16161e;
br: #343746;
}
+287
View File
@@ -0,0 +1,287 @@
@import "colors.rasi" configuration {
font: "Roboto mono 11";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
display-window: "";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
* {
border-colour: var(br);
handle-colour: var(fg);
background-colour: var(bg);
foreground-colour: var(fg);
alternate-background: var(al);
normal-background: var(bg);
normal-foreground: var(fg);
urgent-background: var(bg);
urgent-foreground: var(bg);
active-background: var(ac);
active-foreground: var(bg);
selected-normal-background: var(se);
selected-normal-foreground: var(fg);
selected-urgent-background: var(ac);
selected-urgent-foreground: var(fg);
selected-active-background: var(bg);
selected-active-foreground: var(fg);
alternate-normal-background: var(bg);
alternate-normal-foreground: var(fg);
alternate-urgent-background: var(bg);
alternate-urgent-foreground: var(fg);
alternate-active-background: var(ac);
alternate-active-foreground: var(fg);
}
window {
transparency: "real";
location: north;
anchor: north;
fullscreen: false;
width: 100%;
x-offset: 0px;
y-offset: 0px;
children: [ horibox];
enabled: true;
margin: 0px;
padding: 0px;
border: 0px 0px 3px 0px solid;
border-radius: 0px;
border-color: @border-colour;
cursor: "default";
}
horibox {
spacing: 0px;
background-color: @background-colour;
text-color: @foreground-colour;
orientation: horizontal;
children: [ "prompt", "textbox-prompt-colon", "entry", "listview"];
}
mainbox {
enabled: true;
spacing: 20px;
margin: 0px;
padding: 4px;
border: 0px solid;
border-radius: 0px 0px 0px 0px;
border-color: @border-colour;
background-color: transparent;
children: [ "inputbar", "message", "listview", "mode-switcher"];
}
inputbar {
enabled: true;
spacing: 10px;
margin: 0px;
padding: 8px;
border: 0px solid;
border-radius: 4px;
border-color: @border-colour;
background-color: @alternate-background;
text-color: @foreground-colour;
children: [ "prompt", "entry"];
}
prompt {
enabled: true;
padding: 12px 0px 10px 15px;
background-color: inherit;
text-color: inherit;
}
textbox-prompt-colon {
enabled: true;
padding: 10px 0px 10px 0px;
expand: false;
str: "";
background-color: inherit;
text-color: inherit;
}
entry {
enabled: true;
padding: 10px;
expand: false;
width: 12em;
background-color: inherit;
text-color: inherit;
cursor: text;
placeholder: "Search";
placeholder-color: inherit;
}
num-filtered-rows {
enabled: true;
expand: false;
background-color: inherit;
text-color: inherit;
}
textbox-num-sep {
enabled: true;
expand: false;
str: "/";
background-color: inherit;
text-color: inherit;
}
num-rows {
enabled: true;
expand: false;
background-color: inherit;
text-color: inherit;
}
case-indicator {
enabled: true;
background-color: inherit;
text-color: inherit;
}
listview {
enabled: true;
columns: 1;
lines: 100;
cycle: true;
dynamic: true;
scrollbar: false;
layout: horizontal;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 10px;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 0px;
border-color: @border-colour;
background-color: transparent;
text-color: @foreground-colour;
cursor: "default";
}
scrollbar {
handle-width: 5px;
handle-color: @handle-colour;
border-radius: 8px;
background-color: @alternate-background;
}
element {
enabled: true;
spacing: 8px;
margin: 0px;
padding: 10px 8px;
border: 0px solid;
border-radius: 0px;
border-color: @border-colour;
background-color: transparent;
text-color: @foreground-colour;
cursor: pointer;
}
element normal.normal {
background-color: var(normal-background);
text-color: var(normal-foreground);
}
element normal.urgent {
background-color: var(urgent-background);
text-color: var(urgent-foreground);
}
element normal.active {
background-color: var(active-background);
text-color: var(active-foreground);
}
element selected.normal {
background-color: var(selected-normal-background);
text-color: var(selected-normal-foreground);
}
element selected.urgent {
background-color: var(selected-urgent-background);
text-color: var(selected-urgent-foreground);
}
element selected.active {
background-color: var(selected-active-background);
text-color: var(selected-active-foreground);
}
element alternate.normal {
background-color: var(alternate-normal-background);
text-color: var(alternate-normal-foreground);
}
element alternate.urgent {
background-color: var(alternate-urgent-background);
text-color: var(alternate-urgent-foreground);
}
element alternate.active {
background-color: var(alternate-active-background);
text-color: var(alternate-active-foreground);
}
element-icon {
background-color: transparent;
text-color: inherit;
size: 24px;
cursor: inherit;
}
element-text {
background-color: transparent;
text-color: inherit;
highlight: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0;
}
mode-switcher {
enabled: true;
spacing: 10px;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 4px;
border-color: @border-colour;
background-color: @alternate-background;
text-color: @foreground-colour;
}
button {
padding: 8px;
border: 0px solid;
border-radius: 4px;
border-color: @border-colour;
background-color: transparent;
text-color: inherit;
cursor: pointer;
}
button selected {
background-color: var(normal-foreground);
text-color: var(normal-background);
}
message {
enabled: true;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 0px 0px 0px 0px;
border-color: @border-colour;
background-color: transparent;
text-color: @foreground-colour;
}
textbox {
padding: 8px;
border: 0px solid;
border-radius: 0px;
border-color: @border-colour;
background-color: @alternate-background;
text-color: @foreground-colour;
vertical-align: 0.5;
horizontal-align: 0;
highlight: none;
placeholder-color: @foreground-colour;
blink: true;
markup: true;
}
error-message {
padding: 0px;
border: 0px solid;
border-radius: 0px;
border-color: @border-colour;
background-color: @background-colour;
text-color: @foreground-colour;
}
+120
View File
@@ -0,0 +1,120 @@
/*
* Documentation: https://github.com/davatorium/rofi/wiki
* Config created by Aditya Shakya https://github.com/adi1090x
* Config modified by Keyitdev https://www.github.com/keyitdev/dotfiles
* Copyright (C) 2022 Keyitdev, Aditya Shakya
*/
@import "colors.rasi"
configuration {
font: "Roboto mono 11";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
display-window: "";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
window {
transparency: "real";
background-color: @bg;
text-color: @fg;
border: 2px;
border-color: @br;
border-radius: 20px;
height: 45.3%;
width: 40%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 1.6% 0% 1.5% 1.2%;
background-color: @al;
text-color: @fg;
font: "Iosevka Nerd Font 12";
}
entry {
background-color: @al;
text-color: @fg;
placeholder-color: @fg;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: 1.5% 1.5% 1.5% 1.2%;
blink: true;
}
inputbar {
children: [ prompt, entry];
background-color: @ac;
text-color: @bg;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @ac;
margin: 0% 0% 0% 0%;
}
listview {
background-color: @al;
padding: 0px;
columns: 2;
lines: 5;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @al;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @ac;
children: [ inputbar, listview];
spacing: 0%;
padding: 0%;
}
element {
background-color: @al;
text-color: @fg;
orientation: horizontal;
border-radius: 0%;
padding: 1% 0.5% 1% 0.5%;
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 28px;
border: 0px;
padding: 0 10px 0 10px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
margin: 0% 0.25% 0% 0.25%;
}
element selected {
background-color: @se;
text-color: @fg;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @bg;
}
+121
View File
@@ -0,0 +1,121 @@
/*
* Documentation: https://github.com/davatorium/rofi/wiki
* Config created by Aditya Shakya https://github.com/adi1090x
* Config modified by Keyitdev https://www.github.com/keyitdev/dotfiles
* Copyright (C) 2022 Keyitdev, Aditya Shakya
*/
@import "colors.rasi"
configuration {
font: "Roboto mono 11";
show-icons: false;
icon-theme: "Papirus";
display-drun: "";
display-window: "";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
window {
transparency: "real";
background-color: @bg;
text-color: @fg;
border: 2px;
border-color: @br;
border-radius: 20px;
height: 36.54%;
width: 25%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
//padding: 1.6% 0% 1.5% 1%;
padding: 1.7% 0% 1.5% 1%;
background-color: @al;
text-color: @fg;
font: "Iosevka Nerd Font 12";
}
entry {
background-color: @al;
text-color: @fg;
placeholder-color: @fg;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: 1.5% 1.5% 1.5% 0.8%;
blink: true;
}
inputbar {
children: [ prompt, entry];
background-color: @ac;
text-color: @bg;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @ac;
margin: 0% 0% 0% 0%;
}
listview {
background-color: @al;
padding: 0px;
columns: 1;
lines: 5;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @al;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @ac;
children: [ inputbar, listview];
spacing: 0%;
padding: 0%;
}
element {
background-color: @al;
text-color: @fg;
orientation: horizontal;
border-radius: 0%;
padding: 14px;
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 28px;
border: 0px;
padding: 0 10px 0 10px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
margin: 0% 0.25% 0% 0.25%;
}
element selected {
background-color: @se;
text-color: @fg;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @bg;
}