✨ feat: change runner from wofi to anyrun
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
|
||||
@import "../../.cache/wal/colors-anyrun.css";
|
||||
|
||||
@define-color highlight @color1;
|
||||
@define-color active shade(@highlight, .7);
|
||||
@define-color text @foreground;
|
||||
@@ -0,0 +1,19 @@
|
||||
Config (
|
||||
x: Fraction(0.5),
|
||||
y: Fraction(0.35),
|
||||
width: Fraction(0.4),
|
||||
height: Absolute(100),
|
||||
hide_icons: false,
|
||||
ignore_exclusive_zones: false,
|
||||
layer: Overlay,
|
||||
show_results_immediately: true,
|
||||
max_entries: None,
|
||||
close_on_click: true,
|
||||
hide_plugin_info: true,
|
||||
|
||||
plugins: [
|
||||
"libapplications.so",
|
||||
"libsymbols.so",
|
||||
"libshell.so"
|
||||
],
|
||||
)
|
||||
@@ -0,0 +1,4 @@
|
||||
Config (
|
||||
allow_invalid: false,
|
||||
max_entries: None
|
||||
)
|
||||
@@ -0,0 +1,58 @@
|
||||
|
||||
@import "_colors.css";
|
||||
|
||||
* {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
*:hover {
|
||||
background: none;
|
||||
}
|
||||
|
||||
window {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 6px;
|
||||
background: @background;
|
||||
border-radius: 16px 16px 0 0;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
entry:focus, entry:active {
|
||||
border: 2px solid @color2;
|
||||
}
|
||||
|
||||
entry:hover {
|
||||
background: lightgray;
|
||||
}
|
||||
|
||||
list {
|
||||
border-bottom-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
background: @background;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
list > #match {
|
||||
font-weight: 600;
|
||||
border-radius: 8px;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
list > #match:hover {
|
||||
transition: 120ms linear;
|
||||
background: shade(@background, .8);
|
||||
}
|
||||
|
||||
list > #match:selected,
|
||||
list > #match:active {
|
||||
background: @active;
|
||||
}
|
||||
|
||||
box#main {
|
||||
background: transparent;
|
||||
}
|
||||
Reference in New Issue
Block a user