Use custom rofi setup
parent
ba536feee5
commit
f7b86fe36d
@ -1,15 +0,0 @@
|
|||||||
configuration {
|
|
||||||
modi: [ combi ];
|
|
||||||
combi-modi: [drun, window, ssh];
|
|
||||||
// font: "Fira Code 14";
|
|
||||||
icon-theme: "Papirus";
|
|
||||||
show-icons: true;
|
|
||||||
}
|
|
||||||
@theme "./material.rasi"
|
|
||||||
|
|
||||||
* {
|
|
||||||
font: "Fira Code 12";
|
|
||||||
}
|
|
||||||
element-icon {
|
|
||||||
size: 30;
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
* {
|
|
||||||
background-color: #303030;
|
|
||||||
border-color: #282828;
|
|
||||||
text-color: #9e9e9e;
|
|
||||||
spacing: 0;
|
|
||||||
width: 512px;
|
|
||||||
}
|
|
||||||
|
|
||||||
inputbar {
|
|
||||||
border: 1px 1px 0 1px;
|
|
||||||
children: [prompt,entry];
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt {
|
|
||||||
padding: 16px;
|
|
||||||
border: 0 1px 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox {
|
|
||||||
background-color: #2e343f;
|
|
||||||
border: 0 0 1px 0;
|
|
||||||
border-color: #282C33;
|
|
||||||
padding: 8px 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
entry {
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
listview {
|
|
||||||
cycle: false;
|
|
||||||
margin: 0 0 -1px 0;
|
|
||||||
border: 1px;
|
|
||||||
scrollbar: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
element {
|
|
||||||
border: 0 0 1px 0;
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
element selected {
|
|
||||||
background-color: #2d2d2d;
|
|
||||||
}
|
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TMP_LOCATION=/tmp/rofi
|
||||||
|
|
||||||
|
cd $HOME
|
||||||
|
|
||||||
|
git -C /tmp/rofi pull || git clone --depth=1 https://github.com/adi1090x/rofi.git $TMP_LOCATION
|
||||||
|
|
||||||
|
chmod +x $TMP_LOCATION/setup.sh
|
||||||
|
|
||||||
|
$TMP_LOCATION/setup.sh
|
Reference in new issue