mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-16 11:52:47 +00:00
Rofi: Removed unused files
This commit is contained in:
parent
43b6cf046e
commit
3ba7611a40
|
@ -1,106 +0,0 @@
|
|||
/* ================================================= */
|
||||
/* Rofi config by vinnya3 */
|
||||
/* Icon pack: Papirus */
|
||||
/* Font: Gohu Font */
|
||||
/* ================================================= */
|
||||
|
||||
* {
|
||||
/* Make text color white and background fully transparent */
|
||||
text-color: #D8DEE9;
|
||||
background-color: #282A36;
|
||||
|
||||
/* This variables change other elements color
|
||||
* Change here and it will change over all the
|
||||
* theme (for an unified experience) */
|
||||
fc-color: #D8DEE9;
|
||||
bg-color: #282A36;
|
||||
fc-color-trans: #D8DEE9;
|
||||
bg-color-trans: #282A36;
|
||||
|
||||
font: "GohuFont 11";
|
||||
}
|
||||
|
||||
/* ================================================= */
|
||||
/* Main container */
|
||||
/* ================================================= */
|
||||
#window {
|
||||
fullscreen: false;
|
||||
border: 0px 0px 30px 0px;
|
||||
border-color: @bg-color-trans;
|
||||
orientation: horizontal;
|
||||
}
|
||||
|
||||
#button {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#button selected {
|
||||
font: "GohuFont SemiBold 11";
|
||||
background-color: @fc-color-trans;
|
||||
}
|
||||
/* ================================================= */
|
||||
|
||||
/* ================================================= */
|
||||
/* Input bar */
|
||||
/* ================================================= */
|
||||
#inputbar {
|
||||
background-color: @bg-color;
|
||||
padding: 5px;
|
||||
spacing: 5px;
|
||||
}
|
||||
|
||||
#prompt {
|
||||
font: "GohuFont SemiBold 11";
|
||||
}
|
||||
|
||||
#entry {
|
||||
font: "GohuFont 11";
|
||||
width: 15em;
|
||||
}
|
||||
/* ================================================= */
|
||||
|
||||
|
||||
/* ================================================= */
|
||||
/* List view */
|
||||
/* ================================================= */
|
||||
#listview {
|
||||
/*spacing: 0.5em;*/
|
||||
}
|
||||
|
||||
#element {
|
||||
font: "GohuFont 11";
|
||||
padding: 12px 1.5em 12px 14px;
|
||||
}
|
||||
|
||||
#element selected normal {
|
||||
background-color: #3B4252;
|
||||
}
|
||||
|
||||
#element normal active {
|
||||
background-color: #3B4252;
|
||||
}
|
||||
|
||||
#element normal ur gent {
|
||||
background-color: Orange;
|
||||
}
|
||||
|
||||
#element alternate normal {
|
||||
}
|
||||
|
||||
#element alternate active {
|
||||
text-color: @focus-col;
|
||||
}
|
||||
|
||||
#element alternate urgent {
|
||||
background-color: OrangeRed;
|
||||
}
|
||||
|
||||
#element selected active {
|
||||
background-color: #3B4252;
|
||||
}
|
||||
|
||||
#element selected urgent {
|
||||
background-color: DarkOrange;
|
||||
}
|
||||
|
||||
/* vim:ft=css */
|
|
@ -1,136 +0,0 @@
|
|||
/*
|
||||
* ROFI color theme
|
||||
*
|
||||
* Based on Base16 Material Color Scheme (https://github.com/ntpeters/base16-materialtheme-scheme)
|
||||
*
|
||||
* User: Tomaszal
|
||||
* Copyright: Tomas Zaluckij
|
||||
*/
|
||||
|
||||
configuration {
|
||||
show-icons: true;
|
||||
drun-icon-theme: "Numix Square", "Adwaita";
|
||||
}
|
||||
|
||||
* {
|
||||
base00: #263238;
|
||||
base01: #2E3C43;
|
||||
base02: #314549;
|
||||
base03: #546E7A;
|
||||
base04: #B2CCD6;
|
||||
base05: #EEFFFF;
|
||||
base06: #EEFFFF;
|
||||
base07: #FFFFFF;
|
||||
base08: #F07178;
|
||||
base09: #F78C6C;
|
||||
base0A: #FFCB6B;
|
||||
base0B: #C3E88D;
|
||||
base0C: #89DDFF;
|
||||
base0D: #ff79c6;
|
||||
base0E: #C792EA;
|
||||
base0F: #FF5370;
|
||||
|
||||
/*base0D: #00BCD4;*/
|
||||
|
||||
spacing: 0;
|
||||
background-color: #1e1f29;
|
||||
|
||||
font: "Comfortaa Light 12";
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
/*fullscreen: true;*/
|
||||
background-color: #263238CC; /*base00 + CC (80% opacity)*/
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [inputbar, message, sidebar, listview];
|
||||
spacing: 16px;
|
||||
/*margin: 20%;*/
|
||||
padding: 16px 0;
|
||||
border: 4px;
|
||||
border-color: #4c4e66;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 0 30px;
|
||||
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @base0D;
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: " :";
|
||||
margin: 0 1ch 0 0;
|
||||
text-color: @base0D;
|
||||
}
|
||||
|
||||
entry {
|
||||
text-color: @base07;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
text-color: @base0F;
|
||||
}
|
||||
|
||||
sidebar, message {
|
||||
border: 1px 0;
|
||||
border-color: @base0D;
|
||||
}
|
||||
|
||||
button, textbox {
|
||||
background-color: #393b4d;
|
||||
text-color: #ff79c6;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: #393b4d;
|
||||
}
|
||||
|
||||
listview {
|
||||
scrollbar: true;
|
||||
margin: 0 10px 0 30px;
|
||||
}
|
||||
|
||||
scrollbar {
|
||||
background-color: #393b4d;
|
||||
handle-color: @base0D;
|
||||
handle-width: 4px;
|
||||
border: 0 0px;
|
||||
border-color: @base0D;
|
||||
margin: 0 0 0 20px;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 5px;
|
||||
highlight: bold underline;
|
||||
}
|
||||
|
||||
element normal {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: #393b4d;
|
||||
}
|
||||
|
||||
element alternate {
|
||||
/*background-color: @base03;*/
|
||||
}
|
||||
|
||||
element normal normal, element selected normal, element alternate normal {
|
||||
text-color: #ffffff;
|
||||
}
|
||||
|
||||
element normal urgent, element selected urgent, element alternate urgent {
|
||||
text-color: @base0F;
|
||||
}
|
||||
|
||||
element normal active, element selected active, element alternate active {
|
||||
text-color: #ff79c6;
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
! Dracula colorscheme for Rofi ported by mjturt
|
||||
! ---------------------------------------------
|
||||
|
||||
! Color scheme for normal row
|
||||
rofi.color-normal: argb:00282a36, #f8f8f2, argb:00282a36, #44475a, #ff79c6
|
||||
! Color scheme for urgent row
|
||||
rofi.color-urgent: argb:00282a36, #ff5555, argb:00282a36, #44475a, #ff5555
|
||||
! Color scheme for active row
|
||||
rofi.color-active: argb:00282a36, #50fa7b, argb:00282a36, #44475a, #50fa7b
|
||||
! Color scheme window
|
||||
rofi.color-window: argb:ee282a36, argb:00282a36, #ff79c6
|
|
@ -1,12 +0,0 @@
|
|||
!------------------------------------------------------------------------------
|
||||
! Rofi Solarized colorscheme
|
||||
!------------------------------------------------------------------------------
|
||||
|
||||
! Color scheme for normal row
|
||||
rofi.color-normal: #002b36,#859900,#002b36,#859900,#002b36
|
||||
! Color scheme for urgent row
|
||||
rofi.color-urgent: #002b36,#dc322f,#002b36,#859900,#002b36
|
||||
! Color scheme for active row
|
||||
rofi.color-active: #002b36,#b58900,#002b36,#859900,#002b36
|
||||
! Color scheme window
|
||||
rofi.color-window: #002b36,#859900
|
Loading…
Reference in a new issue