Add rofi config folder
This commit is contained in:
parent
0e7d2f32ba
commit
ae8d2e940b
@ -1,4 +1,5 @@
|
|||||||
# Simple Awesome
|
# Simple Awesome
|
||||||
|
|
||||||
As simple as it sounds
|
As simple as it sounds
|
||||||
(not yet though)
|
(not yet though)
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ config.screenshotCmd = "flameshot gui"
|
|||||||
config.kbSwitchCmd = "setxkbmap"
|
config.kbSwitchCmd = "setxkbmap"
|
||||||
config.kbLayouts = { "fr", "us" }
|
config.kbLayouts = { "fr", "us" }
|
||||||
|
|
||||||
config.runMenu = "rofi -show run"
|
config.runMenu = "rofi -show run -config " .. awful.util.getdir("config") .. "/rofi/config"
|
||||||
config.windowSwitcher = "rofi -show window"
|
config.windowSwitcher = "rofi -show window -config ./rofi"
|
||||||
|
|
||||||
|
|
||||||
return config
|
return config
|
1
rofi/config
Normal file
1
rofi/config
Normal file
@ -0,0 +1 @@
|
|||||||
|
rofi.theme: ~/.config/awesome/rofi/themes/paper-float.rasi
|
126
rofi/themes/paper-float.rasi
Normal file
126
rofi/themes/paper-float.rasi
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
/**
|
||||||
|
* A floating box version of the paper theme.
|
||||||
|
*
|
||||||
|
* User: Qball
|
||||||
|
* Copyright: Dave Davenport
|
||||||
|
*/
|
||||||
|
* {
|
||||||
|
blue: #0000FF;
|
||||||
|
white: #FFFFFF;
|
||||||
|
black: #000000;
|
||||||
|
grey: #eeeeee;
|
||||||
|
|
||||||
|
spacing: 2;
|
||||||
|
background-color: #00000000;
|
||||||
|
border-color: #444444FF;
|
||||||
|
anchor: north;
|
||||||
|
location: center;
|
||||||
|
}
|
||||||
|
#window {
|
||||||
|
transparency: "screenshot";
|
||||||
|
background-color: #00000000;
|
||||||
|
border: 0;
|
||||||
|
padding: 0% 0% 1em 0%;
|
||||||
|
x-offset: 0;
|
||||||
|
y-offset: -10%;
|
||||||
|
}
|
||||||
|
#mainbox {
|
||||||
|
padding: 0px;
|
||||||
|
border: 0;
|
||||||
|
spacing: 1%;
|
||||||
|
}
|
||||||
|
#message {
|
||||||
|
border: 2px;
|
||||||
|
padding: 1em;
|
||||||
|
background-color: @white;
|
||||||
|
text-color: @back;
|
||||||
|
}
|
||||||
|
#textbox normal {
|
||||||
|
text-color: #002B36FF;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
#listview {
|
||||||
|
fixed-height: 1;
|
||||||
|
border: 2px;
|
||||||
|
padding: 1em;
|
||||||
|
reverse: false;
|
||||||
|
|
||||||
|
columns: 1;
|
||||||
|
background-color: @white;
|
||||||
|
}
|
||||||
|
#element {
|
||||||
|
border: 0;
|
||||||
|
padding: 2px;
|
||||||
|
highlight: bold ;
|
||||||
|
}
|
||||||
|
#element normal.normal {
|
||||||
|
text-color: #002B36FF;
|
||||||
|
background-color: #F5F5F500;
|
||||||
|
}
|
||||||
|
#element normal.urgent {
|
||||||
|
text-color: #D75F00FF;
|
||||||
|
background-color: #F5F5F5FF;
|
||||||
|
}
|
||||||
|
#element normal.active {
|
||||||
|
text-color: #005F87FF;
|
||||||
|
background-color: #F5F5F5FF;
|
||||||
|
}
|
||||||
|
#element selected.normal {
|
||||||
|
text-color: #F5F5F5FF;
|
||||||
|
background-color: #4271AEFF;
|
||||||
|
}
|
||||||
|
#element selected.urgent {
|
||||||
|
text-color: #F5F5F5FF;
|
||||||
|
background-color: #D75F00FF;
|
||||||
|
}
|
||||||
|
#element selected.active {
|
||||||
|
text-color: #F5F5F5FF;
|
||||||
|
background-color: #005F87FF;
|
||||||
|
}
|
||||||
|
#element alternate.normal {
|
||||||
|
text-color: #002B36FF;
|
||||||
|
background-color: #D0D0D0FF;
|
||||||
|
}
|
||||||
|
#element alternate.urgent {
|
||||||
|
text-color: #D75F00FF;
|
||||||
|
background-color: #D0D0D0FF;
|
||||||
|
}
|
||||||
|
#element alternate.active {
|
||||||
|
text-color: #005F87FF;
|
||||||
|
background-color: #D0D0D0FF;
|
||||||
|
}
|
||||||
|
#scrollbar {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#inputbar {
|
||||||
|
spacing: 0;
|
||||||
|
border: 2px;
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
background-color: @grey;
|
||||||
|
index: 0;
|
||||||
|
}
|
||||||
|
#inputbar normal {
|
||||||
|
foreground-color: #002B36FF;
|
||||||
|
background-color: #F5F5F500;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode-switcher {
|
||||||
|
border: 2px;
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
background-color: @grey;
|
||||||
|
index: 10;
|
||||||
|
}
|
||||||
|
#button selected {
|
||||||
|
text-color: #4271AEFF;
|
||||||
|
}
|
||||||
|
#inputbar {
|
||||||
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||||
|
}
|
||||||
|
#textbox-prompt-colon {
|
||||||
|
expand: false;
|
||||||
|
str: ":";
|
||||||
|
margin: 0px 0.3em 0em 0em ;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user