Start configuring dwmblocks

This commit is contained in:
Oliver Davies 2025-08-19 20:56:05 +01:00
parent d7a9b529e3
commit bafbce7ac1
5 changed files with 68 additions and 6 deletions

View file

@ -1,5 +0,0 @@
{
flake.modules.homeManager.gui = { pkgs, ... }: {
home.packages = [ pkgs.dwmblocks ];
};
}

View file

@ -0,0 +1,21 @@
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "status-audio";
runtimeInputs = with pkgs; [ pulseaudio ];
text = ''
device="$(pactl list sinks | grep -A2 "$(pactl get-default-sink)" | grep "Description:" | awk '{print $2}')"
test "$device" == "Dummy" && exit 0
echo "$device";
'';
})
];
};
}

View file

@ -0,0 +1,23 @@
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "status-battery";
runtimeInputs = with pkgs; [ gawk ];
text = ''
percentage=$(battery | grep "percentage:" | awk '{print $2}')
test "$percentage" == "100%" && exit 0
state=$(battery | grep "state:" | awk '{print $2}')
echo "$percentage ($state)";
'';
})
];
};
}

View file

@ -0,0 +1,24 @@
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.dwmblocks.override {
conf = ''
static const Block blocks[] = {
{"", "status-audio", 10, 0},
{"", "status-battery", 60, 0},
{"Mem: ", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
{"", "date '+%x %R'", 30, 0},
};
static char delim[] = " | ";
static unsigned int delimLen = 5;
'';
})
];
};
}

View file

@ -9,7 +9,6 @@ forgejo
Create a Home Manager module for bluetuith.
Enable tree-fmt
Configure dwmblocks.
Error detected while processing BufWritePost Autocommands for "*":
Error running vale: ENOENT: no such file or directory