Compare commits

...

3 commits

Author SHA1 Message Date
3ed5eb5757 more software 2025-07-14 13:37:25 +02:00
b80fb6a674 fixed vesktop and added mpv config 2025-07-14 13:37:14 +02:00
5ff67cdcff started working on mpd support 2025-07-13 18:53:09 +02:00
4 changed files with 43 additions and 0 deletions

View file

@ -594,6 +594,7 @@ workspace "chat"
window-rule {
match at-startup=true app-id=r#"^discord$"#
match at-startup=true app-id=r#"^vesktop$"#
match at-startup=true app-id=r#"^Beeper$"#
open-on-workspace "chat"
}

View file

@ -266,6 +266,31 @@
home.shell.enableZshIntegration = true;
programs.mpv = {
enable = true;
package = (
pkgs.mpv-unwrapped.wrapper {
scripts = with pkgs.mpvScripts; [
uosc
sponsorblock
mpv-notify-send
mpv-discord
youtube-upnext
];
mpv = pkgs.mpv-unwrapped.override {
waylandSupport = true;
ffmpeg = pkgs.ffmpeg-full;
};
}
);
config = {
profile = "high-quality";
ytdl-format = "bestvideo+bestaudio";
cache-default = 4000000;
};
};
programs.zsh = {
enable = true;
enableCompletion = true;

View file

@ -17,6 +17,7 @@
zathura
# music editing software
reaper
surge
libreoffice-qt
hunspell
@ -70,6 +71,16 @@
osu-lazer-bin
];
services.mpdscribble = {
enable = true;
endpoints = {
"last.fm" = {
passwordFile = "/run/secrets/lastfm_password";
username = "ariburnznfire";
};
};
};
virtualisation.containers.enable = true;
virtualisation = {
podman = {

View file

@ -0,0 +1,6 @@
{ pkgs }:
pkgs.writeShellScriptBin "search-music-and-launch" ''
mpc clear
mpc add $(mpc listall | ${pkgs.fuzzel}/bin/fuzzel --dmenu)
mpc play
''