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;
|
enable = true;
|
||||||
bars.bar_0 = {
|
bars.bar_0 = {
|
||||||
blocks = [
|
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";
|
block = "disk_space";
|
||||||
path = "/";
|
path = "/";
|
||||||
|
|
Loading…
Reference in a new issue