2023-06-22 17:13:46 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-06-16 14:19:22 +02:00
|
|
|
home.packages = with pkgs; [ waycorner ];
|
2023-06-11 01:07:55 +02:00
|
|
|
|
2023-06-16 14:19:22 +02:00
|
|
|
xdg.configFile."waycorner/config.toml".text = /* toml */ ''
|
2023-06-24 01:30:22 +02:00
|
|
|
[waybar]
|
|
|
|
enter_command = [ "waybar" ]
|
|
|
|
exit_command = [ "killall", ".waybar-wrapped" ]
|
|
|
|
locations = ["right"] # default
|
|
|
|
size = 40
|
2023-06-16 14:19:22 +02:00
|
|
|
timeout_ms = 250
|
|
|
|
'';
|
2023-06-11 01:07:55 +02:00
|
|
|
}
|