mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
meep
This commit is contained in:
parent
e8f6d67625
commit
743741f976
10 changed files with 163 additions and 22 deletions
|
|
@ -33,9 +33,9 @@ in {
|
|||
# ▀
|
||||
#
|
||||
personalBindings = {
|
||||
"Mod+Return".action = sh ''${getExe config.programs.wezterm.package}'';
|
||||
"Mod+Return".action = sh ''${getExe config.programs.alacritty.package}'';
|
||||
"Mod+T".action.toggle-window-floating = {};
|
||||
"Mod+D".action = sh ''${getExe config.programs.fuzzel.package} -T "${getExe config.programs.wezterm.package} start"'';
|
||||
"Mod+D".action = sh ''${getExe config.programs.fuzzel.package} -T "${getExe config.programs.alacritty.package} --command"'';
|
||||
"Mod+Escape".action = sh ''${getExe config.programs.wlogout.package} -p layer-shell'';
|
||||
"Mod+Shift+Escape".action = sh ''${getExe config.programs.swaylock.package} -f'';
|
||||
"Alt+Tab" = {
|
||||
|
|
|
|||
|
|
@ -67,9 +67,9 @@ _: {
|
|||
}
|
||||
|
||||
#workspaces button.active, #workspaces button.focused {
|
||||
background: @base0E;
|
||||
background: @base0C;
|
||||
color: @base00;
|
||||
border-bottom: 3px solid @base0E;
|
||||
border-bottom: 3px solid @base0C;
|
||||
}
|
||||
|
||||
#window {
|
||||
|
|
@ -87,7 +87,7 @@ _: {
|
|||
}
|
||||
|
||||
#mpris {
|
||||
color: @base0A;
|
||||
color: @base00;
|
||||
}
|
||||
|
||||
#custom-notification {
|
||||
|
|
@ -95,21 +95,21 @@ _: {
|
|||
}
|
||||
|
||||
#mpris.playing {
|
||||
background-color: @base0E;
|
||||
background-color: @base0B;
|
||||
}
|
||||
|
||||
#mpris.paused {
|
||||
background-color: @base09;
|
||||
background-color: @base0A;
|
||||
}
|
||||
|
||||
#mpris.stopped {
|
||||
background-color: @base08;
|
||||
background-color: @base09;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background: @base07;
|
||||
border-bottom: 3px solid @base0E;
|
||||
color: @base06;
|
||||
border-bottom: 3px solid @base0D;
|
||||
color: @base02;
|
||||
}
|
||||
|
||||
#clock {
|
||||
|
|
@ -119,20 +119,20 @@ _: {
|
|||
}
|
||||
|
||||
#battery.charging {
|
||||
color: white;
|
||||
background-color: #26A65B;
|
||||
color: @base00;
|
||||
background-color: @base0B;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #ffffff;
|
||||
color: black;
|
||||
background-color: @base00;
|
||||
color: @base07;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.warning:not(.charging) {
|
||||
background: #f53c3c;
|
||||
color: white;
|
||||
background: @base0F;
|
||||
color: @base00;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: steps(12);
|
||||
|
|
|
|||
|
|
@ -34,5 +34,18 @@ _: {
|
|||
matches = [{app-id = "^spotify$";}];
|
||||
open-on-workspace = "media";
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
app-id = "steam";
|
||||
title = "^notificationtoasts_\d+_desktop$";
|
||||
}
|
||||
];
|
||||
default-floating-position = {
|
||||
x = 10;
|
||||
y = 10;
|
||||
relative-to = "top-right";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue