Switch to i3

This commit is contained in:
Asocia
2021-07-11 16:51:11 +03:00
parent aafe749ced
commit bf6eb6b13a
19 changed files with 1120 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* colors */
* {
al: #00000000;
bg: #282A3A;
bga: #3a3e4e;
fga: #e1e3e0;
fg: #e1e3e4;
ac: #7e8294;
}

View File

@ -0,0 +1,20 @@
* {
background-color: #282A3A;
text-color: #7e8294;
font: "Segoe UI 10";
}
window {
width: 250px;
padding: 0px;
border: 0px 0px -1px 0px;
margin: 0px 50px;
location: north;
left: 50%;
margin-left:-50%;
}
entry {
expand: true;
text-color: #7e8294;
}

View File

@ -0,0 +1,123 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Iosevka Nerd Font 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@import "colors.rasi"
window {
transparency: "real";
background-color: @bg;
text-color: @fg;
border: 0px 0px 4px 0px;
border-color: @ac;
border-radius: 0px;
width: 400px;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 2px 0px 0px 10px;
background-color: @al;
text-color: @fg;
}
textbox-prompt-colon {
padding: 2px 0px 0px 5px;
background-color: @al;
text-color: @fg;
expand: false;
str: "";
font: "feather 12";
}
entry {
background-color: @al;
text-color: @fg;
placeholder-color: @fg;
expand: true;
horizontal-align: 0;
placeholder: "Search...";
padding: 2px 0px 0px 6px;
blink: true;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
background-color: @bga;
text-color: @fg;
expand: false;
border: 0px;
border-radius: 0px;
border-color: @ac;
margin: 0px;
padding: 8px;
}
listview {
background-color: @al;
padding: 0px;
columns: 1;
lines: 8;
spacing: 6px;
cycle: true;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @al;
border: 0px;
border-radius: 0px;
border-color: @ac;
children: [ inputbar, listview ];
spacing: 6px;
padding: 6px;
}
element {
background-color: @al;
text-color: @fga;
orientation: horizontal;
border-radius: 0px;
padding: 8px 8px 8px -10px;
}
element-icon {
size: 24px;
border: 0px;
}
element-text {
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
margin: 0px 2.5px 0px 2.5px;
}
element selected {
background-color: @bga;
text-color: @fg;
border: 0px 0px 0px 0px;
border-radius: 0px;
border-color: @ac;
}

View File

@ -0,0 +1,40 @@
* {
background-color: #282A3A;
color: #7e8294;
font: "Segoe UI 10";
}
#window {
location: north;
width: 375px;
padding: -6px 0px;
children: [horibox];
}
#horibox {
orientation: horizontal;
children: [listview];
}
#listview {
layout: horizontal;
padding: 0px 0px;
spacing: 2px;
lines: 50;
}
#element {
margin: 0px 5px;
padding: 6px 2px;
}
#element selected {
color: #e1e3e4;
}
#button {
font: "Segoe UI 1 ";
width: 12;
text-color: #7e8294;
}