add wallpapers
This commit is contained in:
73
.config/rofi/minimal/colors.rasi
Normal file
73
.config/rofi/minimal/colors.rasi
Normal file
@@ -0,0 +1,73 @@
|
||||
/***************************************************
|
||||
* Name: Name Colors
|
||||
* Author: Matheus Silva, Modified by nub31
|
||||
* Date: 2024-09-28
|
||||
***************************************************/
|
||||
|
||||
/* Comment */
|
||||
|
||||
* {
|
||||
/***** [ Colors ] *****/
|
||||
|
||||
/* don't delete these colors */
|
||||
|
||||
white: #ffffff;
|
||||
black: #000000;
|
||||
red: #ff0000;
|
||||
|
||||
/***** [ Custom Colors ] *****/
|
||||
|
||||
color1: #151515;
|
||||
color2: #232323;
|
||||
color3: #FFFFFF;
|
||||
color4: #424242;
|
||||
|
||||
accent: #9BC549;
|
||||
|
||||
/***** [ Elements ] *****/
|
||||
|
||||
background: @color1;
|
||||
background-alt: @color2;
|
||||
background-selected: @white;
|
||||
background-active: @white;
|
||||
background-urgent: @white;
|
||||
|
||||
foreground: @color3;
|
||||
foreground-alt: @color4;
|
||||
foreground-selected: @color3;
|
||||
foreground-active: @white;
|
||||
foreground-urgent: @white;
|
||||
|
||||
background-color: @color1;
|
||||
text-color: @color3;
|
||||
border-color: @white;
|
||||
separator-color: @white;
|
||||
normal: @white;
|
||||
selected: @white;
|
||||
active: @white;
|
||||
urgent: @white;
|
||||
|
||||
/***** [ Aliases ] *****/
|
||||
|
||||
/* DO NOT TOUCH HERE */
|
||||
|
||||
bg: @background;
|
||||
bg-alt: @background-alt;
|
||||
bg-sel: @background-selected;
|
||||
bg-act: @background-active;
|
||||
bg-urg: @background-urgent;
|
||||
|
||||
fg: @foreground;
|
||||
fg-alt: @foreground-alt;
|
||||
fg-sel: @foreground-selected;
|
||||
fg-act: @foreground-active;
|
||||
fg-urg: @foreground-urgent;
|
||||
|
||||
sel: @selected;
|
||||
act: @active;
|
||||
urg: @urgent;
|
||||
text: @text-color;
|
||||
txt: @text-color;
|
||||
border: @border-color;
|
||||
separator: @separator-color;
|
||||
}
|
||||
78
.config/rofi/minimal/style.rasi
Normal file
78
.config/rofi/minimal/style.rasi
Normal file
@@ -0,0 +1,78 @@
|
||||
/***************************************************
|
||||
* Name: Minimal
|
||||
* Author: Matheus Silva, Modified by nub31
|
||||
* Date: 2024-09-28
|
||||
***************************************************/
|
||||
|
||||
@import "colors.rasi"
|
||||
|
||||
/* Comment */
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font Medium 12";
|
||||
|
||||
drun {
|
||||
display-name: "[^.^]";
|
||||
}
|
||||
|
||||
run {
|
||||
display-name: "[°.°]";
|
||||
}
|
||||
|
||||
window {
|
||||
display-name: "[*.*]";
|
||||
}
|
||||
|
||||
timeout {
|
||||
delay: 10;
|
||||
action: "kb-cancel";
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @bg;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [inputbar, listview];
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [prompt, entry];
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 12px 0;
|
||||
text-color: @accent;
|
||||
}
|
||||
|
||||
prompt {
|
||||
padding: 12px;
|
||||
text-color: @accent;
|
||||
}
|
||||
|
||||
listview {
|
||||
lines: 8;
|
||||
}
|
||||
|
||||
element {
|
||||
children: [element-text];
|
||||
}
|
||||
|
||||
element-text {
|
||||
padding: 12px;
|
||||
text-color: @fg-alt;
|
||||
}
|
||||
|
||||
element-text selected {
|
||||
text-color: @accent;
|
||||
}
|
||||
Reference in New Issue
Block a user