Switch rofi to Nord
This commit is contained in:
parent
22333637ea
commit
3d6a361bcd
@ -1,5 +1,5 @@
|
|||||||
configuration {
|
configuration {
|
||||||
font: "Source Code Pro Semibold 10.5";
|
font: "Source Code Pro Semibold 10.5";
|
||||||
}
|
}
|
||||||
@theme "iceberg-dark"
|
@theme "nord"
|
||||||
|
|
||||||
|
0
home/.config/rofi/themes/.gitkeep
Normal file
0
home/.config/rofi/themes/.gitkeep
Normal file
@ -1,205 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* ROFI Color Theme
|
|
||||||
* User: Sheepla
|
|
||||||
* Copyleft: Sheepla
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
* {
|
|
||||||
highlight: bold italic;
|
|
||||||
scrollbar: true;
|
|
||||||
|
|
||||||
/* Color palette from iceberg.vim and iceberg-dark
|
|
||||||
* https://github.com/cocopon/iceberg.vim
|
|
||||||
* https://github.com/gkeep/iceberg-dark
|
|
||||||
*/
|
|
||||||
palette-bg0: #161821;
|
|
||||||
palette-bg1: #1e2132;
|
|
||||||
palette-bg2: #444b71;
|
|
||||||
palette-fg0: #c6c8d1;
|
|
||||||
palette-fg1: #aeb4cc;
|
|
||||||
palette-red: #e27878;
|
|
||||||
palette-green: #b4be82;
|
|
||||||
palette-yellow: #e2a478;
|
|
||||||
palette-blue: #84a0c6;
|
|
||||||
palette-purple: #a093c7;
|
|
||||||
palette-cyan: #89b8c2;
|
|
||||||
palette-grey: #c0bfc9;
|
|
||||||
|
|
||||||
/* Base colors */
|
|
||||||
background: @palette-bg0;
|
|
||||||
background-color: @background;
|
|
||||||
foreground: @palette-fg1;
|
|
||||||
|
|
||||||
/* Normal colors */
|
|
||||||
normal-background: @background;
|
|
||||||
normal-foreground: @foreground;
|
|
||||||
alternate-normal-background: @palette-bg1;
|
|
||||||
alternate-normal-foreground: @foreground;
|
|
||||||
selected-normal-background: @palette-bg2;
|
|
||||||
selected-normal-foreground: @palette-fg0;
|
|
||||||
|
|
||||||
/* Active window colors */
|
|
||||||
active-background: @normal-background;
|
|
||||||
active-foreground: @palette-blue;
|
|
||||||
alternate-active-background: @alternate-normal-background;
|
|
||||||
alternate-active-foreground: @active-foreground;
|
|
||||||
selected-active-background: @palette-blue;
|
|
||||||
selected-active-foreground: @normal-background;
|
|
||||||
|
|
||||||
/* Urgent colors */
|
|
||||||
urgent-background: @background;
|
|
||||||
urgent-foreground: @palette-yellow;
|
|
||||||
alternate-urgent-background: @alternate-normal-background;
|
|
||||||
alternate-urgent-foreground: @urgent-foreground;
|
|
||||||
selected-urgent-background: @urgent-foreground;
|
|
||||||
selected-urgent-foreground: @normal-background;
|
|
||||||
|
|
||||||
/* Other colors */
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
separatorcolor: @border-color;
|
|
||||||
scrollbar-handle: @palette-bg2;
|
|
||||||
|
|
||||||
text-color: @alternate-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
background-color: @background-color;
|
|
||||||
children: [mainbox];
|
|
||||||
}
|
|
||||||
|
|
||||||
#mainbox {
|
|
||||||
border: 0;
|
|
||||||
orientation: vertical;
|
|
||||||
children: [ entry, message, listview, mode-switcher ];
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
|
||||||
expand: false;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
/* Padding between 2 lines */
|
|
||||||
padding: 10px 0px 10px 10px;
|
|
||||||
border: 0 0 2px;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
expand: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Message box */
|
|
||||||
#textbox {
|
|
||||||
horizontal-align: 0;
|
|
||||||
background-color: @palette-bg2;
|
|
||||||
padding: 10px 20px 10px 20px ;
|
|
||||||
text-color: @palette-fg0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#listview {
|
|
||||||
border: 0px 0px 0px ;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
padding: 0px 0px 5px 0px;
|
|
||||||
scrollbar: @scrollbar;
|
|
||||||
columns: 3;
|
|
||||||
lines: 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#mode-switcher {
|
|
||||||
border: 3px 0px 0px 0px;
|
|
||||||
border-color: @palette-bg2;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#button.selected {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element {
|
|
||||||
border: 0;
|
|
||||||
padding: 3px 10px 3px 10px ;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.normal {
|
|
||||||
background-color: @normal-background;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.urgent {
|
|
||||||
background-color: @urgent-background;
|
|
||||||
text-color: @urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.active {
|
|
||||||
background-color: @active-background;
|
|
||||||
text-color: @active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.normal {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.urgent {
|
|
||||||
background-color: @selected-urgent-background;
|
|
||||||
text-color: @selected-urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.selected.active {
|
|
||||||
background-color: @selected-active-background;
|
|
||||||
text-color: @selected-active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.normal {
|
|
||||||
background-color: @alternate-normal-background;
|
|
||||||
text-color: @alternate-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.urgent {
|
|
||||||
background-color: @alternate-urgent-background;
|
|
||||||
text-color: @alternate-urgent-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.alternate.active {
|
|
||||||
background-color: @alternate-active-background;
|
|
||||||
text-color: @alternate-active-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
inputbar {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
padding: 2px;
|
|
||||||
children: [ textbox-prompt-sep, entry, case-indicator ];
|
|
||||||
}
|
|
||||||
|
|
||||||
case-indicator,
|
|
||||||
entry,
|
|
||||||
button {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.selected {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox-prompt-sep {
|
|
||||||
expand: false;
|
|
||||||
str: ":";
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
margin: 0 0.3em 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt {
|
|
||||||
padding:6px 9px;
|
|
||||||
background-color: @palette-bg2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element-icon {
|
|
||||||
size: 18;
|
|
||||||
}
|
|
@ -80,7 +80,6 @@ symlink "${DF_HOME}/.functions" "${HOME}/.functions"
|
|||||||
symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
|
symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
|
||||||
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
|
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
|
||||||
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
|
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
|
||||||
symlink "${DF_HOME}/.stalonetrayrc" "${HOME}/.stalonetrayrc"
|
|
||||||
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf"
|
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf"
|
||||||
symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf"
|
symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf"
|
||||||
symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc"
|
symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc"
|
||||||
@ -99,10 +98,12 @@ symlink "${DF_CONFIG}/nitrogen" "${HOME}/.config/nitrogen"
|
|||||||
symlink "${DF_CONFIG}/terminator" "${HOME}/.config/terminator"
|
symlink "${DF_CONFIG}/terminator" "${HOME}/.config/terminator"
|
||||||
symlink "${DF_CONFIG}/ranger" "${HOME}/.config/ranger"
|
symlink "${DF_CONFIG}/ranger" "${HOME}/.config/ranger"
|
||||||
symlink "${DF_CONFIG}/viewnior" "${HOME}/.config/viewnior"
|
symlink "${DF_CONFIG}/viewnior" "${HOME}/.config/viewnior"
|
||||||
symlink "${DF_CONFIG}/volumeicon" "${HOME}/.config/volumeicon"
|
|
||||||
symlink "${DF_CONFIG}/mimeapps.list" "${HOME}/.config/mimeapps.list"
|
symlink "${DF_CONFIG}/mimeapps.list" "${HOME}/.config/mimeapps.list"
|
||||||
symlink "${DF_CONFIG}/Code/User/settings.json" "${HOME}/.config/Code/User/settings.json"
|
symlink "${DF_CONFIG}/Code/User/settings.json" "${HOME}/.config/Code/User/settings.json"
|
||||||
|
|
||||||
|
echo "Installing Nord rofi theme"
|
||||||
|
wget https://raw.githubusercontent.com/undiabler/nord-rofi-theme/master/nord.rasi -O "${HOME}/.config/rofi/themes/rofi.rasi"
|
||||||
|
|
||||||
echo "Installing Iceberg Icon pack..."
|
echo "Installing Iceberg Icon pack..."
|
||||||
# symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
# symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
||||||
symlink "${DF_HOME}/.icons/oomox-iceberg" "${HOME}/.icons/oomox-iceberg"
|
symlink "${DF_HOME}/.icons/oomox-iceberg" "${HOME}/.icons/oomox-iceberg"
|
||||||
|
Loading…
Reference in New Issue
Block a user