meta: Remove hyprbars

Although this was cute, there are simply too many bugs and other
inconveniences to be worth it. For example, the bar cannot be focused
when a workspace has a fullscreen application.
This commit is contained in:
Donovan Glover 2023-08-01 19:02:52 -04:00
parent 8c1eaec846
commit d1a78a7a57
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 1 additions and 28 deletions

View File

@ -6,11 +6,6 @@
url = "github:hyprwm/Hyprland";
};
hyprland-plugins = {
url = "github:snehrbass/sn-hyprland-plugins/sn-win-filter";
inputs.hyprland.follows = "hyprland";
};
home-manager = {
url = "github:donovanglover/home-manager/personal-master";
inputs.nixpkgs.follows = "nixpkgs";

View File

@ -98,22 +98,6 @@ in
layout = master
}
plugin {
hyprbars {
bar_color = rgba(${base00}F2)
bar_height = 30
col.text = rgba(${base05}99)
bar_text_size = 9
bar_text_font = Maple Mono
exclude_windowrulev2 = floating:0,title:^(Easy Effects|Volume Control|Bluetooth|iwgtk)$
buttons {
button_size = 14
col.maximize = rgba(${base04}cc)
col.close = rgba(${base05}cc)
}
}
}
decoration {
rounding = 0
blur = yes

View File

@ -1,4 +1,4 @@
{ pkgs, lib, sakaya, hyprland-plugins, ... }:
{ pkgs, lib, sakaya, ... }:
{
environment.systemPackages = with pkgs; [
@ -22,7 +22,6 @@
sqlitebrowser
kanjidraw
libreoffice
hyprland-plugins.packages.${pkgs.system}.hyprbars
gdu
fdupes
@ -102,11 +101,6 @@
nix-init
];
programs.fish.shellAliases = {
hyprbars = "hyprctl plugin load ${hyprland-plugins.packages.${pkgs.system}.hyprbars}/lib/libhyprbars.so";
nobars = "hyprctl plugin unload ${hyprland-plugins.packages.${pkgs.system}.hyprbars}/lib/libhyprbars.so";
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];