meta: Remove waycorner

For simplicity, waycorner will not be used as an option to execute
commands. This should prevent any unexpected surprises and we no longer
have to deal with waycorner getting hidden by other windows.
This commit is contained in:
Donovan Glover
2023-06-25 10:53:06 -04:00
parent 37c6737beb
commit fd18dbd99b
2 changed files with 0 additions and 15 deletions

@ -23,7 +23,6 @@
./thunar.nix
(lib.mkIf (config.programs.hyprland.enable == true) ./udiskie.nix)
./waybar.nix
./waycorner.nix
./xcursor.nix
./xdg-user-dirs.nix
./xresources.nix

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ waycorner ];
xdg.configFile."waycorner/config.toml".text = /* toml */ ''
[waybar]
enter_command = [ "waybar" ]
exit_command = [ "killall", ".waybar-wrapped" ]
locations = ["right"] # default
size = 40
timeout_ms = 250
'';
}