Compare commits

...

2 Commits

Author SHA1 Message Date
tux
6ebc3ed144 feat(tpanel): add tpanel module 2026-05-11 03:39:11 +05:30
tux
b2a103235c feat(mango): update tag animation direction 2026-05-11 03:38:50 +05:30
2 changed files with 8 additions and 1 deletions

View File

@@ -194,7 +194,7 @@
animation_type_close = "fade"; animation_type_close = "fade";
animation_fade_in = 1; animation_fade_in = 1;
animation_fade_out = 1; animation_fade_out = 1;
tag_animation_direction = 1; tag_animation_direction = 0;
zoom_initial_ratio = 0.3; zoom_initial_ratio = 0.3;
zoom_end_ratio = 0.8; zoom_end_ratio = 0.8;
fadein_begin_opacity = 0.5; fadein_begin_opacity = 0.5;

View File

@@ -0,0 +1,7 @@
{
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ tpanel ];
};
}