remove walker
This commit is contained in:
parent
590618a5bc
commit
2c64563ade
modules
|
@ -114,9 +114,6 @@ layerrule = noanim, shell:bar
|
|||
|
||||
layerrule = noanim, shell:screenshot
|
||||
|
||||
layerrule = blur, walker
|
||||
layerrule = ignorezero, walker
|
||||
layerrule = animation popin 90%, walker
|
||||
|
||||
windowrulev2 = float, class:^(opensnitch_ui)$
|
||||
windowrulev2 = dimaround, class:^(opensnitch_ui)$
|
||||
|
|
|
@ -1,57 +0,0 @@
|
|||
{ inputs, impurity, ... }: {
|
||||
imports = [ inputs.walker.homeManagerModules.walker ];
|
||||
|
||||
programs.walker = {
|
||||
enable = true;
|
||||
runAsService = true;
|
||||
|
||||
config = {
|
||||
show_initial_entries = true;
|
||||
fullscreen = true;
|
||||
scrollbar_policy = "external";
|
||||
activation_mode.use_alt = true;
|
||||
|
||||
search = {
|
||||
hide_icons = false;
|
||||
hide_spinner = true;
|
||||
};
|
||||
|
||||
align = {
|
||||
width = 500;
|
||||
horizontal = "center";
|
||||
vertical = "center";
|
||||
margins.top = 0;
|
||||
};
|
||||
|
||||
list = {
|
||||
height = 500;
|
||||
fixed_height = true;
|
||||
always_show = true;
|
||||
};
|
||||
|
||||
icons.hide = false;
|
||||
|
||||
modules = [
|
||||
{
|
||||
name = "applications";
|
||||
prefix = "";
|
||||
}
|
||||
{
|
||||
name = "runner";
|
||||
prefix = ">";
|
||||
}
|
||||
{
|
||||
name = "commands";
|
||||
prefix = "";
|
||||
switcher_exclusive = true;
|
||||
}
|
||||
{
|
||||
name = "switcher";
|
||||
prefix = "/";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
xdg.configFile."walker/style.css".source = impurity.link ./style.css;
|
||||
}
|
|
@ -1,91 +0,0 @@
|
|||
* {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#window {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#box {
|
||||
background: #c0ffff30;
|
||||
padding: 7px;
|
||||
|
||||
border: 1px solid #ffffff50;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#search,
|
||||
#typeahead {
|
||||
border-radius: 0;
|
||||
outline: none;
|
||||
outline-width: 0px;
|
||||
box-shadow: none;
|
||||
border-bottom: none;
|
||||
border: none;
|
||||
background: #e0ffff30;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#typeahead {
|
||||
background: none;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#search placeholder {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#search text {
|
||||
padding-left: 7px;
|
||||
}
|
||||
|
||||
#list {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#list *:selected {
|
||||
border-radius: 5px;
|
||||
border: 1px solid #ffffff30;
|
||||
background: #e0ffff20;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding: 5px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.textwrapper {
|
||||
}
|
||||
|
||||
.label {
|
||||
}
|
||||
|
||||
.sub {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.activationlabel {
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
.activation .activationlabel {
|
||||
opacity: 1;
|
||||
color: #76946a;
|
||||
}
|
||||
|
||||
.activation .textwrapper,
|
||||
.activation .icon,
|
||||
.activation .search {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#spinner { opacity: 0 }
|
||||
#spinner.visible { opacity: 1 }
|
Loading…
Reference in a new issue