mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
7209bae4a3
This was my attempt at using waycorner with waybar, however it fails since waybar shows above waycorner. This commit is purely for historical purposes.
15 lines
303 B
Nix
15 lines
303 B
Nix
{ 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
|
|
'';
|
|
}
|