changed date

This commit is contained in:
biscuit
2025-06-04 14:32:51 -05:00
parent 1fb2d40aa8
commit a92159168c
5 changed files with 32 additions and 20 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ function FocusedClient() {
</box>
}
function Time({ format = "%H:%M %a %b %e" }) {
function Time({ format = "%H:%M %a %b %d" }) {
const time = Variable<string>("").poll(1000, () =>
GLib.DateTime.new_now_local().format(format)!)
+19 -13
View File
@@ -1,5 +1,10 @@
{ inputs, pkgs, system, ... }: {
imports = [ inputs.ags.homeManagerModules.default ];
{
inputs,
pkgs,
system,
...
}: {
imports = [inputs.ags.homeManagerModules.default];
programs.ags = {
enable = true;
@@ -7,16 +12,17 @@
extraPackages = let
agsPkgs = inputs.ags.packages.${system};
in with pkgs; [
agsPkgs.battery
agsPkgs.hyprland
agsPkgs.mpris
agsPkgs.wireplumber
agsPkgs.notifd
agsPkgs.apps
agsPkgs.network
agsPkgs.tray
fzf
];
in
with pkgs; [
agsPkgs.battery
agsPkgs.hyprland
agsPkgs.mpris
agsPkgs.wireplumber
agsPkgs.notifd
agsPkgs.apps
agsPkgs.network
agsPkgs.tray
fzf
];
};
}