1
Fork 0

Compare commits

...

4 Commits

Author SHA1 Message Date
Bauke 815e0d3416
Add the Noto emoji fonts. 2024-03-28 19:20:30 +01:00
Bauke b53e3c55fb
Add gucharmap and polybar. 2024-03-28 19:19:59 +01:00
Bauke 76a34e4d9c
Output empty lines for no results and no longer escape ampersands. 2024-03-28 19:19:43 +01:00
Bauke 6baf532b42
Switch back to XFCE. 2024-03-26 13:49:04 +01:00
5 changed files with 10 additions and 24 deletions

View File

@ -8,4 +8,6 @@ count=$(echo $json | jq -j '.unreads | length')
if [[ ! $count -eq "0" ]]; then
echo $count
else
echo
fi

View File

@ -52,6 +52,7 @@
git-lfs
glab
gnome.file-roller
gnome.gucharmap
gramps
handbrake
helm
@ -93,6 +94,7 @@
picard
pkg-config
podman-compose
polybar
pop-icon-theme
prismlauncher
protonup-ng
@ -109,6 +111,7 @@
ripgrep
rkrlv2
rnix-lsp
rofi
sorcer
sqlite-interactive
sqlitebrowser

View File

@ -34,11 +34,6 @@
nssmdns = true;
};
picom = {
enable = true;
package = pkgs.picom-next;
};
pipewire = {
alsa.enable = true;
alsa.support32Bit = true;
@ -50,22 +45,13 @@
usbmuxd.enable = true;
xserver = {
desktopManager.xfce.enable = true;
enable = true;
layout = "be";
videoDrivers = [ "nvidia" ];
xkbVariant = "";
desktopManager = {
xterm.enable = false;
xfce = {
enable = true;
enableXfwm = true;
noDesktop = true;
};
};
displayManager = {
defaultSession = "xfce+i3";
lightdm = {
enable = true;
extraSeatDefaults = ''
@ -73,14 +59,6 @@
'';
};
};
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
i3status-rust
rofi
];
};
};
};
}

View File

@ -35,6 +35,7 @@
hasklig
inter
iosevka
noto-fonts-color-emoji
victor-mono
(nerdfonts.override { fonts = [ "Hasklig" ]; })
];

View File

@ -101,7 +101,9 @@ async function getStatus(): Promise<Status> {
async function getCurrentSong(): Promise<void> {
const status = await getStatus();
if (status.status === "playing") {
console.log(`${status.artist} - ${status.title}`.replaceAll("&", "&amp;"));
console.log(`${status.artist} - ${status.title}`);
} else {
console.log("");
}
}