Compare commits
3 Commits
e7b8db9d22
...
aa1c447d41
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | aa1c447d41 | |
Nathan McCarty | 21391e2cbb | |
Nathan McCarty | ab4eabc1bc |
|
@ -3,479 +3,485 @@ let
|
||||||
fuzzel-command = config.nathan.config.desktop.fuzzel-command;
|
fuzzel-command = config.nathan.config.desktop.fuzzel-command;
|
||||||
targets = config.nathan.config.desktop.targets;
|
targets = config.nathan.config.desktop.targets;
|
||||||
hyprland = config.nathan.programs.hyprland.enable;
|
hyprland = config.nathan.programs.hyprland.enable;
|
||||||
in lib.mkIf hyprland {
|
in lib.mkMerge [
|
||||||
#########################
|
# Hyprland specific configuration
|
||||||
## Waybar
|
(lib.mkIf hyprland {
|
||||||
#########################
|
programs.waybar.settings.mainBar = {
|
||||||
# https://github.com/DN-debug/waybar-examples/tree/main/waybar-examples/sway
|
modules-center = [
|
||||||
programs.waybar = {
|
"custom/launcher"
|
||||||
enable = true;
|
"wlr/workspaces"
|
||||||
package =
|
"custom/media"
|
||||||
(inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".waybar.override {
|
# "hyprland/window"
|
||||||
withMediaPlayer = true;
|
"idle_inhibitor"
|
||||||
}).overrideAttrs
|
"pulseaudio"
|
||||||
(old: { mesonFlags = old.mesonFlags ++ [ "-Dexperimental=true" ]; });
|
"network"
|
||||||
systemd = { enable = false; };
|
"cpu"
|
||||||
settings = {
|
"memory"
|
||||||
mainBar = {
|
# "temperature"
|
||||||
layer = "top";
|
"tray"
|
||||||
position = "top";
|
"custom/notification"
|
||||||
height = 30;
|
"clock"
|
||||||
spacing = 0;
|
# "custom/power"
|
||||||
margin-top = 5;
|
];
|
||||||
margin-bottom = 0;
|
};
|
||||||
# modules-left = [ "wlr/workspaces" "hyprland/submap" ];
|
})
|
||||||
# modules-center = [ "hyprland/window" ];
|
# General configuration
|
||||||
# modules-right = [ "mpd" "clock" "tray" ];
|
(lib.mkIf hyprland {
|
||||||
modules-center = [
|
#########################
|
||||||
"custom/launcher"
|
## Waybar
|
||||||
"wlr/workspaces"
|
#########################
|
||||||
"custom/media"
|
# https://github.com/DN-debug/waybar-examples/tree/main/waybar-examples/sway
|
||||||
# "hyprland/window"
|
programs.waybar = {
|
||||||
"idle_inhibitor"
|
enable = true;
|
||||||
"pulseaudio"
|
package =
|
||||||
"network"
|
(inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".waybar.override {
|
||||||
"cpu"
|
withMediaPlayer = true;
|
||||||
"memory"
|
}).overrideAttrs
|
||||||
# "temperature"
|
(old: { mesonFlags = old.mesonFlags ++ [ "-Dexperimental=true" ]; });
|
||||||
"tray"
|
systemd = { enable = false; };
|
||||||
"custom/notification"
|
settings = {
|
||||||
"clock"
|
mainBar = {
|
||||||
# "custom/power"
|
layer = "top";
|
||||||
];
|
position = "top";
|
||||||
"custom/launcher" = {
|
height = 30;
|
||||||
format = "";
|
spacing = 0;
|
||||||
on-click = fuzzel-command + " --prompt='❯ ' ";
|
margin-top = 5;
|
||||||
on-click-right = "killall fuzzel";
|
margin-bottom = 0;
|
||||||
};
|
"custom/launcher" = {
|
||||||
"idle_inhibitor" = {
|
format = "";
|
||||||
format = "{icon}";
|
on-click = fuzzel-command + " --prompt='❯ ' ";
|
||||||
format-icons = {
|
on-click-right = "killall fuzzel";
|
||||||
activated = "";
|
|
||||||
deactivated = "";
|
|
||||||
};
|
};
|
||||||
};
|
"idle_inhibitor" = {
|
||||||
pulseaudio = {
|
format = "{icon}";
|
||||||
scroll-step = 1;
|
format-icons = {
|
||||||
format = "{volume}% {icon}";
|
activated = "";
|
||||||
format-bluetooth = "{volume}% {icon}";
|
deactivated = "";
|
||||||
format-bluetooth-muted = "{icon} {format_source}";
|
};
|
||||||
format-muted = "{format_source}";
|
|
||||||
format-source = "";
|
|
||||||
format-source-muted = "";
|
|
||||||
format-icons = {
|
|
||||||
headphone = "";
|
|
||||||
hands-free = "";
|
|
||||||
headset = "";
|
|
||||||
phone = "";
|
|
||||||
portable = "";
|
|
||||||
car = "";
|
|
||||||
default = [ "" "" "" ];
|
|
||||||
};
|
};
|
||||||
on-click = "pavucontrol";
|
pulseaudio = {
|
||||||
ignored-sinks = [ "Easy Effects Sink" ];
|
scroll-step = 1;
|
||||||
};
|
format = "{volume}% {icon}";
|
||||||
network = {
|
format-bluetooth = "{volume}% {icon}";
|
||||||
# // "interface": "wlp2*", // (Optional) To force the use of this interface
|
format-bluetooth-muted = "{icon} {format_source}";
|
||||||
format-wifi = "{essid} ({signalStrength}%) ";
|
format-muted = "{format_source}";
|
||||||
format-ethernet = "Connected ";
|
format-source = "";
|
||||||
tooltip-format = "{ifname} via {gwaddr} ";
|
format-source-muted = "";
|
||||||
format-linked = "{ifname} (No IP) ";
|
format-icons = {
|
||||||
format-disconnected = "Disconnected ⚠";
|
headphone = "";
|
||||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
hands-free = "";
|
||||||
on-click-right = "bash ~/.config/rofi/wifi_menu/rofi_wifi_menu";
|
headset = "";
|
||||||
};
|
phone = "";
|
||||||
cpu = {
|
portable = "";
|
||||||
format = "{usage}% ";
|
car = "";
|
||||||
tooltip = false;
|
default = [ "" "" "" ];
|
||||||
};
|
};
|
||||||
memory = { format = "{}% ({used}GB/{total}GB) "; };
|
on-click = "pavucontrol";
|
||||||
"tray" = {
|
ignored-sinks = [ "Easy Effects Sink" ];
|
||||||
icon-size = 20;
|
|
||||||
spacing = 10;
|
|
||||||
};
|
|
||||||
"clock" = { format = "{:%I:%M%p %Y-%m-%d}"; };
|
|
||||||
"custom/media" = {
|
|
||||||
format = "{icon} {}";
|
|
||||||
return-type = "json";
|
|
||||||
max-length = 50;
|
|
||||||
format-icons = {
|
|
||||||
spotify = " ";
|
|
||||||
firefox = " ";
|
|
||||||
mopidy = " ";
|
|
||||||
default = " ";
|
|
||||||
};
|
};
|
||||||
escape = true;
|
network = {
|
||||||
exec = "waybar-mediaplayer.py 2> /dev/null";
|
# // "interface": "wlp2*", // (Optional) To force the use of this interface
|
||||||
on-click = "playerctl play-pause";
|
format-wifi = "{essid} ({signalStrength}%) ";
|
||||||
};
|
format-ethernet = "Connected ";
|
||||||
"custom/notification" = {
|
tooltip-format = "{ifname} via {gwaddr} ";
|
||||||
tooltip = false;
|
format-linked = "{ifname} (No IP) ";
|
||||||
format = "{icon}";
|
format-disconnected = "Disconnected ⚠";
|
||||||
format-icons = {
|
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
||||||
notification = " <span foreground='red'><sup></sup></span> ";
|
on-click-right = "bash ~/.config/rofi/wifi_menu/rofi_wifi_menu";
|
||||||
none = " ";
|
};
|
||||||
dnd-notification = " <span foreground='red'><sup></sup></span> ";
|
cpu = {
|
||||||
dnd-none = "";
|
format = "{usage}% ";
|
||||||
inhibited-notification =
|
tooltip = false;
|
||||||
" <span foreground='red'><sup></sup></span> ";
|
};
|
||||||
inhibited-none = " ";
|
memory = { format = "{}% ({used}GB/{total}GB) "; };
|
||||||
dnd-inhibited-notification =
|
"tray" = {
|
||||||
" <span foreground='red'><sup></sup></span> ";
|
icon-size = 20;
|
||||||
dnd-inhibited-none = " ";
|
spacing = 10;
|
||||||
|
};
|
||||||
|
"clock" = { format = "{:%I:%M%p %Y-%m-%d}"; };
|
||||||
|
"custom/media" = {
|
||||||
|
format = "{icon} {}";
|
||||||
|
return-type = "json";
|
||||||
|
max-length = 50;
|
||||||
|
format-icons = {
|
||||||
|
spotify = " ";
|
||||||
|
firefox = " ";
|
||||||
|
mopidy = " ";
|
||||||
|
default = " ";
|
||||||
|
};
|
||||||
|
escape = true;
|
||||||
|
exec = "waybar-mediaplayer.py 2> /dev/null";
|
||||||
|
on-click = "playerctl play-pause";
|
||||||
|
};
|
||||||
|
"custom/notification" = {
|
||||||
|
tooltip = false;
|
||||||
|
format = "{icon}";
|
||||||
|
format-icons = {
|
||||||
|
notification = " <span foreground='red'><sup></sup></span> ";
|
||||||
|
none = " ";
|
||||||
|
dnd-notification =
|
||||||
|
" <span foreground='red'><sup></sup></span> ";
|
||||||
|
dnd-none = "";
|
||||||
|
inhibited-notification =
|
||||||
|
" <span foreground='red'><sup></sup></span> ";
|
||||||
|
inhibited-none = " ";
|
||||||
|
dnd-inhibited-notification =
|
||||||
|
" <span foreground='red'><sup></sup></span> ";
|
||||||
|
dnd-inhibited-none = " ";
|
||||||
|
};
|
||||||
|
return-type = "json";
|
||||||
|
exec-if = "which swaync-client";
|
||||||
|
exec = "swaync-client -swb";
|
||||||
|
on-click = "swaync-client -t -sw";
|
||||||
|
on-click-right = "swaync-client -d -sw";
|
||||||
|
escape = true;
|
||||||
};
|
};
|
||||||
return-type = "json";
|
|
||||||
exec-if = "which swaync-client";
|
|
||||||
exec = "swaync-client -swb";
|
|
||||||
on-click = "swaync-client -t -sw";
|
|
||||||
on-click-right = "swaync-client -d -sw";
|
|
||||||
escape = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
style = ''
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0px;
|
||||||
|
font-family: Roboto, Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background-color: transparent;
|
||||||
|
color: #ffffff;
|
||||||
|
transition-property: background-color;
|
||||||
|
transition-duration: .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar.hidden {
|
||||||
|
opacity: 0.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
background: #1f1f1f;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
||||||
|
#workspaces button:hover {
|
||||||
|
background: lightblue;
|
||||||
|
color: black;
|
||||||
|
border-bottom: 3px solid #ffffff;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active {
|
||||||
|
background: #3f3f3f;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active:hover {
|
||||||
|
background: lightblue;
|
||||||
|
color: black;
|
||||||
|
border-bottom: 3px solid #ffffff;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.urgent {
|
||||||
|
background-color: #eb4d4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode {
|
||||||
|
background-color: #64727D;
|
||||||
|
border-bottom: 3px solid #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#battery,
|
||||||
|
#cpu,
|
||||||
|
#memory,
|
||||||
|
#disk,
|
||||||
|
#temperature,
|
||||||
|
#backlight,
|
||||||
|
#network,
|
||||||
|
#pulseaudio,
|
||||||
|
#custom-media,
|
||||||
|
#custom-launcher,
|
||||||
|
#custom-power,
|
||||||
|
#tray,
|
||||||
|
#mode,
|
||||||
|
#idle_inhibitor,
|
||||||
|
#mpd {
|
||||||
|
padding: 0 10px;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
#mpd {
|
||||||
|
background-color: #8EC5FC;
|
||||||
|
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window,
|
||||||
|
#workspaces {
|
||||||
|
margin: 0px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If workspaces is the leftmost module, omit left margin */
|
||||||
|
.modules-left > widget:first-child > #workspaces {
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If workspaces is the rightmost module, omit right margin */
|
||||||
|
.modules-right > widget:last-child > #workspaces {
|
||||||
|
margin-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 0px 20px 20px 0px;
|
||||||
|
margin-right: 4px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.charging, #battery.plugged {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #26A65B;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
to {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.critical:not(.charging) {
|
||||||
|
background-color: #f53c3c;
|
||||||
|
color: #ffffff;
|
||||||
|
animation-name: blink;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
label:focus {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-notification {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#memory {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disk {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#backlight {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.disconnected {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio.muted {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media {
|
||||||
|
background-color: #8EC5FC;
|
||||||
|
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#custom-media {
|
||||||
|
background-color: #8EC5FC;
|
||||||
|
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media.custom-spotify {
|
||||||
|
background-color: #8EC5FC;
|
||||||
|
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media.custom-vlc {
|
||||||
|
background-color: #8EC5FC;
|
||||||
|
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-power{
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
font-size: 16px;
|
||||||
|
border-radius: 19px;
|
||||||
|
|
||||||
|
}
|
||||||
|
#custom-launcher{
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
font-size: 18px;
|
||||||
|
border-radius: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-updater {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#temperature {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature.critical {
|
||||||
|
background-color: #eb4d4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(-45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray > .passive {
|
||||||
|
-gtk-icon-effect: dim;
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray > .needs-attention {
|
||||||
|
-gtk-icon-effect: highlight;
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idle_inhibitor {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
border-radius: 20px 0px 0px 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#idle_inhibitor.activated {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
border-radius: 20px 0px 0px 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#language {
|
||||||
|
background-color: #FA8BFF;
|
||||||
|
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
||||||
|
color: black;
|
||||||
|
min-width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keyboard-state {
|
||||||
|
background: #97e1ad;
|
||||||
|
color: #000000;
|
||||||
|
min-width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keyboard-state > label {
|
||||||
|
padding: 0px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#keyboard-state > label.locked {
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
style = ''
|
# Override the service to run during graphical-session-pre.target
|
||||||
* {
|
systemd.user.services.waybar = {
|
||||||
border: none;
|
Unit = {
|
||||||
border-radius: 0px;
|
Description =
|
||||||
font-family: Roboto, Helvetica, Arial, sans-serif;
|
"Highly customizable Wayland bar for Sway and Wlroots based compositors.";
|
||||||
font-size: 12px;
|
Documentation = "https://github.com/Alexays/Waybar/wiki";
|
||||||
min-height: 0;
|
Before = [ "tray.target" ];
|
||||||
}
|
};
|
||||||
|
|
||||||
window#waybar {
|
Service = {
|
||||||
background-color: transparent;
|
ExecStart = "${config.programs.waybar.package}/bin/waybar";
|
||||||
color: #ffffff;
|
ExecReload = "${pkgs.coreutils}/bin/kill -SIGUSR2 $MAINPID";
|
||||||
transition-property: background-color;
|
ExecStartPost = "${pkgs.coreutils}/bin/sleep 1";
|
||||||
transition-duration: .5s;
|
Restart = "on-failure";
|
||||||
}
|
KillMode = "mixed";
|
||||||
|
};
|
||||||
|
|
||||||
window#waybar.hidden {
|
Install = { WantedBy = targets; };
|
||||||
opacity: 0.2;
|
};
|
||||||
}
|
#########################
|
||||||
|
## Create tray target to fix some things
|
||||||
|
#########################
|
||||||
#workspaces button {
|
systemd.user.targets.tray = {
|
||||||
background: #1f1f1f;
|
Unit = {
|
||||||
color: #ffffff;
|
Description = "Home Manager System Tray";
|
||||||
border-radius: 20px;
|
Requires = [ "graphical-session-pre.target" "waybar.service" ];
|
||||||
|
After = [ "waybar.service" ];
|
||||||
}
|
};
|
||||||
|
|
||||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
||||||
#workspaces button:hover {
|
|
||||||
background: lightblue;
|
|
||||||
color: black;
|
|
||||||
border-bottom: 3px solid #ffffff;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
background: #3f3f3f;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active:hover {
|
|
||||||
background: lightblue;
|
|
||||||
color: black;
|
|
||||||
border-bottom: 3px solid #ffffff;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.urgent {
|
|
||||||
background-color: #eb4d4b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mode {
|
|
||||||
background-color: #64727D;
|
|
||||||
border-bottom: 3px solid #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#battery,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#disk,
|
|
||||||
#temperature,
|
|
||||||
#backlight,
|
|
||||||
#network,
|
|
||||||
#pulseaudio,
|
|
||||||
#custom-media,
|
|
||||||
#custom-launcher,
|
|
||||||
#custom-power,
|
|
||||||
#tray,
|
|
||||||
#mode,
|
|
||||||
#idle_inhibitor,
|
|
||||||
#mpd {
|
|
||||||
padding: 0 10px;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
#mpd {
|
|
||||||
background-color: #8EC5FC;
|
|
||||||
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window,
|
|
||||||
#workspaces {
|
|
||||||
margin: 0px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the leftmost module, omit left margin */
|
|
||||||
.modules-left > widget:first-child > #workspaces {
|
|
||||||
margin-left: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the rightmost module, omit right margin */
|
|
||||||
.modules-right > widget:last-child > #workspaces {
|
|
||||||
margin-right: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 0px 20px 20px 0px;
|
|
||||||
margin-right: 4px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery {
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging, #battery.plugged {
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #26A65B;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
to {
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
background-color: #f53c3c;
|
|
||||||
color: #ffffff;
|
|
||||||
animation-name: blink;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
label:focus {
|
|
||||||
background-color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-notification {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#memory {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#disk {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#backlight {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#network {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#network.disconnected {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio.muted {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media {
|
|
||||||
background-color: #8EC5FC;
|
|
||||||
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#custom-media {
|
|
||||||
background-color: #8EC5FC;
|
|
||||||
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media.custom-spotify {
|
|
||||||
background-color: #8EC5FC;
|
|
||||||
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px;
|
|
||||||
margin-right: 5px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media.custom-vlc {
|
|
||||||
background-color: #8EC5FC;
|
|
||||||
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-power{
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
font-size: 16px;
|
|
||||||
border-radius: 19px;
|
|
||||||
|
|
||||||
}
|
|
||||||
#custom-launcher{
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
font-size: 18px;
|
|
||||||
border-radius: 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-updater {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#temperature {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#temperature.critical {
|
|
||||||
background-color: #eb4d4b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(-45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray > .passive {
|
|
||||||
-gtk-icon-effect: dim;
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray > .needs-attention {
|
|
||||||
-gtk-icon-effect: highlight;
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(-45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
border-radius: 20px 0px 0px 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor.activated {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
border-radius: 20px 0px 0px 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#language {
|
|
||||||
background-color: #FA8BFF;
|
|
||||||
background-image: linear-gradient(45deg, #2BD2FF 0%, #2BD2FF 52%, #2BD2FF 90%);
|
|
||||||
color: black;
|
|
||||||
min-width: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state {
|
|
||||||
background: #97e1ad;
|
|
||||||
color: #000000;
|
|
||||||
min-width: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state > label {
|
|
||||||
padding: 0px 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#keyboard-state > label.locked {
|
|
||||||
background: rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
# Override the service to run during graphical-session-pre.target
|
|
||||||
systemd.user.services.waybar = {
|
|
||||||
Unit = {
|
|
||||||
Description =
|
|
||||||
"Highly customizable Wayland bar for Sway and Wlroots based compositors.";
|
|
||||||
Documentation = "https://github.com/Alexays/Waybar/wiki";
|
|
||||||
Before = [ "tray.target" ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
})
|
||||||
ExecStart = "${config.programs.waybar.package}/bin/waybar";
|
]
|
||||||
ExecReload = "${pkgs.coreutils}/bin/kill -SIGUSR2 $MAINPID";
|
|
||||||
ExecStartPost = "${pkgs.coreutils}/bin/sleep 1";
|
|
||||||
Restart = "on-failure";
|
|
||||||
KillMode = "mixed";
|
|
||||||
};
|
|
||||||
|
|
||||||
Install = { WantedBy = targets; };
|
|
||||||
};
|
|
||||||
#########################
|
|
||||||
## Create tray target to fix some things
|
|
||||||
#########################
|
|
||||||
systemd.user.targets.tray = {
|
|
||||||
Unit = {
|
|
||||||
Description = "Home Manager System Tray";
|
|
||||||
Requires = [ "graphical-session-pre.target" "waybar.service" ];
|
|
||||||
After = [ "waybar.service" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -86,57 +86,84 @@ in with lib; {
|
||||||
preserve_split = true # you probably want this
|
preserve_split = true # you probably want this
|
||||||
}
|
}
|
||||||
|
|
||||||
|
master {
|
||||||
|
new_is_master = false
|
||||||
|
}
|
||||||
|
|
||||||
gestures {
|
gestures {
|
||||||
workspace_swipe = false
|
workspace_swipe = false
|
||||||
}
|
}
|
||||||
|
|
||||||
$mainMod = SUPER
|
bind = SUPER, Q, exec, alacritty
|
||||||
|
bind = SUPER, C, killactive,
|
||||||
|
# bind = SUPER, M, exit,
|
||||||
|
bind = SUPER, E, exec, dolphin
|
||||||
|
bind = SUPER, V, togglefloating,
|
||||||
|
bind = SUPER, P, pseudo, # dwindle
|
||||||
|
bind = SUPER, B, togglesplit, # dwindle
|
||||||
|
|
||||||
bind = $mainMod, Q, exec, alacritty
|
# Maximize
|
||||||
bind = $mainMod, C, killactive,
|
bind = SUPER, A, fullscreen, 1
|
||||||
# bind = $mainMod, M, exit,
|
bind = SUPER SHIFT, A, fullscreen, 0
|
||||||
bind = $mainMod, E, exec, dolphin
|
|
||||||
bind = $mainMod, V, togglefloating,
|
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
|
||||||
bind = $mainMod, B, togglesplit, # dwindle
|
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
bind = $mainMod, H, movefocus, l
|
bind = SUPER, H, movefocus, l
|
||||||
bind = $mainMod, L, movefocus, r
|
bind = SUPER, L, movefocus, r
|
||||||
bind = $mainMod, K, movefocus, u
|
bind = SUPER, K, movefocus, u
|
||||||
bind = $mainMod, J, movefocus, d
|
bind = SUPER, K, layoutmsg, focusnext
|
||||||
|
bind = SUPER, J, movefocus, d
|
||||||
|
bind = SUPER, J, layoutmsg, focusprev
|
||||||
|
|
||||||
|
# Move windows with mainMod + arrow keys
|
||||||
|
bind = SUPER SHIFT, H, movewindow, l
|
||||||
|
bind = SUPER SHIFT, L, movewindow, r
|
||||||
|
bind = SUPER SHIFT, K, movewindow, u
|
||||||
|
bind = SUPER SHIFT, K, layoutmsg, swapnext
|
||||||
|
bind = SUPER SHIFT, J, movewindow, d
|
||||||
|
bind = SUPER SHIFT, J, layoutmsg, swapprev
|
||||||
|
|
||||||
|
# Switch layouts with a mode
|
||||||
|
bind = SUPER, S, submap, layout
|
||||||
|
submap=layout
|
||||||
|
# dwindle
|
||||||
|
bind = , A, exec, hyprctl keyword general:layout dwindle
|
||||||
|
bind = , A, submap, reset
|
||||||
|
# master
|
||||||
|
bind = , S, exec, hyprctl keyword general:layout master
|
||||||
|
bind = , S, submap, reset
|
||||||
|
submap = reset
|
||||||
|
|
||||||
# Switch workspaces with mainMod + [0-9]
|
# Switch workspaces with mainMod + [0-9]
|
||||||
bind = $mainMod, 1, workspace, 1
|
bind = SUPER, 1, workspace, 1
|
||||||
bind = $mainMod, 2, workspace, 2
|
bind = SUPER, 2, workspace, 2
|
||||||
bind = $mainMod, 3, workspace, 3
|
bind = SUPER, 3, workspace, 3
|
||||||
bind = $mainMod, 4, workspace, 4
|
bind = SUPER, 4, workspace, 4
|
||||||
bind = $mainMod, 5, workspace, 5
|
bind = SUPER, 5, workspace, 5
|
||||||
bind = $mainMod, 6, workspace, 6
|
bind = SUPER, 6, workspace, 6
|
||||||
bind = $mainMod, 7, workspace, 7
|
bind = SUPER, 7, workspace, 7
|
||||||
bind = $mainMod, 8, workspace, 8
|
bind = SUPER, 8, workspace, 8
|
||||||
bind = $mainMod, 9, workspace, 9
|
bind = SUPER, 9, workspace, 9
|
||||||
bind = $mainMod, 0, workspace, 10
|
bind = SUPER, 0, workspace, 10
|
||||||
|
|
||||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
bind = SUPER SHIFT, 1, movetoworkspace, 1
|
||||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
bind = SUPER SHIFT, 2, movetoworkspace, 2
|
||||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
bind = SUPER SHIFT, 3, movetoworkspace, 3
|
||||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
bind = SUPER SHIFT, 4, movetoworkspace, 4
|
||||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
bind = SUPER SHIFT, 5, movetoworkspace, 5
|
||||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
bind = SUPER SHIFT, 6, movetoworkspace, 6
|
||||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
bind = SUPER SHIFT, 7, movetoworkspace, 7
|
||||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
bind = SUPER SHIFT, 8, movetoworkspace, 8
|
||||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
bind = SUPER SHIFT, 9, movetoworkspace, 9
|
||||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
bind = SUPER SHIFT, 0, movetoworkspace, 10
|
||||||
|
|
||||||
# Scroll through existing workspaces with mainMod + scroll
|
# Scroll through existing workspaces with mainMod + scroll
|
||||||
bind = $mainMod, mouse_down, workspace, e+1
|
bind = SUPER, mouse_down, workspace, e+1
|
||||||
bind = $mainMod, mouse_up, workspace, e-1
|
bind = SUPER, mouse_up, workspace, e-1
|
||||||
|
|
||||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||||
bindm = $mainMod, mouse:272, movewindow
|
bindm = SUPER, mouse:272, movewindow
|
||||||
bindm = $mainMod, mouse:273, resizewindow
|
bindm = SUPER, mouse:273, resizewindow
|
||||||
|
|
||||||
# Media key binds
|
# Media key binds
|
||||||
bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise
|
bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise
|
||||||
|
@ -169,6 +196,35 @@ in with lib; {
|
||||||
windowrulev2 = float,class:^(.blueman-manager-wrapped)$
|
windowrulev2 = float,class:^(.blueman-manager-wrapped)$
|
||||||
windowrulev2 = center,class:^(.blueman-manager-wrapped)$
|
windowrulev2 = center,class:^(.blueman-manager-wrapped)$
|
||||||
|
|
||||||
|
# firefox Picture-in-Picture
|
||||||
|
windowrulev2 = float,class:^(firefox)$,title:^(Picture-in-Picture)$
|
||||||
|
windowrulev2 = pin,class:^(firefox)$,title:^(Picture-in-Picture)$
|
||||||
|
windowrulev2 = nofullscreenrequest,class:^(firefox)$,title:^(Picture-in-Picture)$
|
||||||
|
|
||||||
|
# firefox figma micro indicator
|
||||||
|
windowrulev2 = nofullscreenrequest,class:^(firefox)$,title:^(Firefox — Sharing Indicator)$
|
||||||
|
windowrulev2 = float,class:^(firefox)$,title:^(Firefox — Sharing Indicator)$
|
||||||
|
|
||||||
|
# Common modals
|
||||||
|
windowrule = float,title:^(Open)$
|
||||||
|
windowrule = center,title:^(Open)$
|
||||||
|
windowrule = float,title:^(Choose Files)$
|
||||||
|
windowrule = center,title:^(Choose Files)$
|
||||||
|
windowrule = float,title:^(Save As)$
|
||||||
|
windowrule = center,title:^(Save As)$
|
||||||
|
windowrule = float,title:^(Confirm to replace files)$
|
||||||
|
windowrule = center,title:^(Confirm to replace files)$
|
||||||
|
windowrule = float,title:^(File Operation Progress)$
|
||||||
|
windowrule = center,title:^(File Operation Progress)$
|
||||||
|
windowrulev2 = float,class:^(google-chrome)$,title:^(Open Files)$
|
||||||
|
windowrulev2 = center,class:^(google-chrome)$,title:^(Open Files)$
|
||||||
|
windowrulev2 = float,class:^(google-chrome)$,title:^(Open File)$
|
||||||
|
windowrulev2 = center,class:^(google-chrome)$,title:^(Open File)$
|
||||||
|
|
||||||
|
# Pavucontrol
|
||||||
|
windowrule = center,pavucontrol
|
||||||
|
windowrule = float,pavucontrol
|
||||||
|
|
||||||
## Scratchpads
|
## Scratchpads
|
||||||
|
|
||||||
# Alacritty
|
# Alacritty
|
||||||
|
|
|
@ -26,8 +26,12 @@
|
||||||
sensitivity = -0.8
|
sensitivity = -0.8
|
||||||
# accel_profile = flat
|
# accel_profile = flat
|
||||||
}
|
}
|
||||||
|
master {
|
||||||
|
mfact = 0.68
|
||||||
|
}
|
||||||
exec-once=hyprpaper
|
exec-once=hyprpaper
|
||||||
'';
|
'';
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Background
|
# Background
|
||||||
xdg.configFile."hypr/hyprpaper.conf" = {
|
xdg.configFile."hypr/hyprpaper.conf" = {
|
||||||
|
|
Loading…
Reference in New Issue