Display rileys gender and pronouns in status bar uwu
This commit is contained in:
parent
404f80c1d5
commit
dc3e284ffd
1 changed files with 10 additions and 0 deletions
|
@ -75,6 +75,16 @@ in
|
|||
enable = true;
|
||||
bars.bar_0 = {
|
||||
blocks = [
|
||||
{
|
||||
block = "custom";
|
||||
command = ''
|
||||
set -euo pipefail
|
||||
gender="$(${pkgs.curl}/bin/curl 'https://rly.cx/api/gender')"
|
||||
pronouns="$(${pkgs.curl}/bin/curl 'https://rly.cx/api/pronouns')"
|
||||
echo -n "Riley: $gender ($pronouns)"
|
||||
'';
|
||||
interval = 360;
|
||||
}
|
||||
{
|
||||
block = "disk_space";
|
||||
path = "/";
|
||||
|
|
Loading…
Reference in a new issue