mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-06-01 16:03:13 +00:00
first commit
This commit is contained in:
commit
e55d8c9640
15 changed files with 894 additions and 0 deletions
15
rofi/colours/gruvbox.rasi
Normal file
15
rofi/colours/gruvbox.rasi
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* GRUVBOX THEME */
|
||||
/* config for fluffys dots */
|
||||
|
||||
* {
|
||||
bg: #282828;
|
||||
bg2: #1d2021BF;
|
||||
fg: #ebdbb2;
|
||||
sd: #1d2021;
|
||||
alt: #3c3836;
|
||||
rad: 16px;
|
||||
rad2: 8px;
|
||||
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
16
rofi/colours/paradise.rasi
Normal file
16
rofi/colours/paradise.rasi
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* PARADISE THEME */
|
||||
/* config for fluffys dots, */
|
||||
/* colours by @Manas140 on GitHub */
|
||||
|
||||
* {
|
||||
bg: #151515;
|
||||
bg2: #15151500;
|
||||
fg: #E8E3E3;
|
||||
sd: #151515;
|
||||
alt: #8C977D;
|
||||
rad: 16px;
|
||||
rad2: 8px;
|
||||
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
91
rofi/config old.rasi
Normal file
91
rofi/config old.rasi
Normal file
|
@ -0,0 +1,91 @@
|
|||
/* ==============================================
|
||||
* Fluffys sussed up config
|
||||
* Not all code is mine, well, most of it isn't
|
||||
* Enjoy hell
|
||||
* ==============================================*/
|
||||
configuration {
|
||||
modi: "drun";
|
||||
display-drun: "";
|
||||
font: "Rubik Medium 11";
|
||||
}
|
||||
|
||||
@theme "/dev/null"
|
||||
|
||||
/* ==============================================
|
||||
* COLOURS
|
||||
* ==============================================*/
|
||||
* {
|
||||
bg: #282828;
|
||||
fg: #ebdbb2;
|
||||
sd: #1d2021;
|
||||
al: #3c3836;
|
||||
rad: 16px;
|
||||
border-radius: @rad;
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* WINDOW
|
||||
* ==============================================*/
|
||||
window {
|
||||
border-radius: 16px;
|
||||
location: north west;
|
||||
width: 20%;
|
||||
height: 100%;
|
||||
spacing: 0;
|
||||
orientation: horizontal;
|
||||
children: [ box ];
|
||||
margin: 47px 8px 8px 8px;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* LAYOUT
|
||||
* ==============================================*/
|
||||
box {
|
||||
padding: 0.75em;
|
||||
spacing: 0.5em;
|
||||
layout: vertical;
|
||||
children: [ entry, listview ];
|
||||
}
|
||||
entry {
|
||||
background-color: @sd;
|
||||
placeholder: "Sniff...";
|
||||
expand: false;
|
||||
padding: 0.75em;
|
||||
}
|
||||
listview {
|
||||
cycle: false;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* EXTRA STUFFS
|
||||
* ==============================================*/
|
||||
icon {
|
||||
width: 110px;
|
||||
expand: false;
|
||||
padding: 50px;
|
||||
margin: 0 116px;
|
||||
background-image: url("sploot.jpg", height);
|
||||
}
|
||||
banner {
|
||||
height: 110px;
|
||||
expand: false;
|
||||
padding: 0.75em;
|
||||
margin: 0;
|
||||
background-image: url("Red panda X Snepo.jpg", height);
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* ELEMENTS
|
||||
* ==============================================*/
|
||||
element {
|
||||
padding: 0.75em;
|
||||
}
|
||||
element selected {
|
||||
background-color: @al;
|
||||
}
|
||||
element-text, element-icon {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
74
rofi/config.rasi
Normal file
74
rofi/config.rasi
Normal file
|
@ -0,0 +1,74 @@
|
|||
/* ==============================================
|
||||
* Fluffys sussed up config
|
||||
* Not all code is mine, well, most of it isn't
|
||||
* Enjoy hell
|
||||
* ==============================================*/
|
||||
configuration {
|
||||
modi: "drun";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
font: "Rubik Medium 11";
|
||||
timeout {
|
||||
delay: 10;
|
||||
action: "kb-cancel";
|
||||
}
|
||||
}
|
||||
|
||||
@theme "/dev/null"
|
||||
|
||||
/* ==============================================
|
||||
* COLOURS
|
||||
* ==============================================*/
|
||||
@import "colours/paradise.rasi"
|
||||
|
||||
/* ==============================================
|
||||
* ROFI WINDOW
|
||||
* ==============================================*/
|
||||
window {
|
||||
fullscreen: true;
|
||||
padding: 8px 80.8% 47px 8px;
|
||||
background-color: @bg2;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* ELEMENTS
|
||||
* ==============================================*/
|
||||
mainbox {
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 8px;
|
||||
background-color: #0000;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ entry ];
|
||||
padding: 16px 16px 6em;
|
||||
border-radius: @rad;
|
||||
background-image: url("titleBarImages/sploot.jpg", width);
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 0.75em;
|
||||
placeholder: "Sniff...";
|
||||
border-radius: @rad2;
|
||||
background-color: @sd;
|
||||
}
|
||||
|
||||
listview {
|
||||
layout: vertical;
|
||||
cycle: false;
|
||||
padding: 16px;
|
||||
border-radius: @rad;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 0.75em;
|
||||
border-radius: @rad2;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* EXTRA STUFFS
|
||||
* ==============================================*/
|
||||
element selected, element-text selected { background-color: @alt; }
|
||||
listview, element, element-selected, element-text { cursor: pointer; }
|
||||
entry { cursor: text; }
|
70
rofi/power.rasi
Normal file
70
rofi/power.rasi
Normal file
|
@ -0,0 +1,70 @@
|
|||
/* ==============================================
|
||||
* Fluffys sussed up config
|
||||
* Not all code is mine, well, most of it isn't
|
||||
* Enjoy hell
|
||||
* ==============================================*/
|
||||
configuration {
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
font: "Rubik Medium 11";
|
||||
timeout {
|
||||
delay: 10;
|
||||
action: "kb-cancel";
|
||||
}
|
||||
}
|
||||
|
||||
@theme "/dev/null"
|
||||
|
||||
/* ==============================================
|
||||
* COLOURS
|
||||
* ==============================================*/
|
||||
@import "colours/paradise.rasi"
|
||||
|
||||
/* ==============================================
|
||||
* ROFI WINDOW
|
||||
* ==============================================*/
|
||||
window {
|
||||
fullscreen: true;
|
||||
padding: 75.3% 8px 47px 86.1%;
|
||||
/*padding: 8px 80.8% 8px 8px;*/
|
||||
background-color: @bg2;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* ELEMENTS
|
||||
* ==============================================*/
|
||||
mainbox {
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 8px;
|
||||
background-color: #0000;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ prompt ];
|
||||
padding: 0.75em;
|
||||
border-radius: @rad;
|
||||
background-color: @sd;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
}
|
||||
|
||||
listview {
|
||||
layout: vertical;
|
||||
cycle: false;
|
||||
padding: 16px;
|
||||
border-radius: @rad;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 0.75em;
|
||||
border-radius: @rad2;
|
||||
}
|
||||
|
||||
/* ==============================================
|
||||
* EXTRA STUFFS
|
||||
* ==============================================*/
|
||||
element selected, element-text selected { background-color: @alt; }
|
||||
listview, element, element-selected, element-text { cursor: pointer; }
|
||||
entry { cursor: text; }
|
BIN
rofi/titleBarImages/Red panda X Snepo.jpg
Normal file
BIN
rofi/titleBarImages/Red panda X Snepo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 192 KiB |
BIN
rofi/titleBarImages/sploot.jpg
Normal file
BIN
rofi/titleBarImages/sploot.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 381 KiB |
Loading…
Add table
Add a link
Reference in a new issue