1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-02-12 04:22:07 +00:00
This commit is contained in:
Rae 5e 2024-12-31 20:27:32 -05:00
parent 6e28141f5a
commit a8b6ce3036
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
5 changed files with 22 additions and 10 deletions

View file

@ -1,3 +1,9 @@
hsetroot -cover ~/.dotfiles/assets/wallpapers/current hsetroot -cover ~/.dotfiles/assets/wallpapers/current
xcompmgr & xcompmgr &
# dumb yambar workaround https://codeberg.org/dnkl/yambar/issues/429
xterm -geometry 1x1+0+18 &
temp=$!
sleep 1
yambar & yambar &
sleep 1
kill $temp

View file

@ -73,6 +73,11 @@
} }
''; '';
}; };
#! doesn't seem to do anything ;w;;;;;
mpdris2 = {
enable = true;
mpd.musicDirectory = "/mnt/world/music";
};
mpris-proxy.enable = true; mpris-proxy.enable = true;
}; };

View file

@ -1,4 +1,4 @@
{ ... }: { { pkgs, ... }: {
programs.yambar = { programs.yambar = {
enable = true; enable = true;
settings = { settings = {
@ -12,13 +12,12 @@
left = [ left = [
{ {
# TODO: mpd <https://www.mankier.com/5/yambar-modules-mpd> # https://codeberg.org/dnkl/yambar/issues/53#issuecomment-264088
label = { label = {
content.string.text = "god's in his heaven | all's right with the world"; content.string.text = "god's in his heaven | all's right with the world";
}; };
} }
]; ];
right = [ right = [
{ {
battery = { battery = {

View file

@ -31,6 +31,12 @@
xserver.videoDrivers = [ "nvidia" "modesetting" "fbdev" ]; xserver.videoDrivers = [ "nvidia" "modesetting" "fbdev" ];
}; };
hardware = { hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-sdk
];
};
nvidia = { nvidia = {
modesetting.enable = true; modesetting.enable = true;
powerManagement = { powerManagement = {
@ -41,12 +47,6 @@
nvidiaSettings = true; nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable; package = config.boot.kernelPackages.nvidiaPackages.stable;
}; };
opengl = {
enable = true;
extraPackages = with pkgs; [
intel-media-sdk
];
};
}; };
fonts.fontconfig.subpixel.rgba = "rgb"; fonts.fontconfig.subpixel.rgba = "rgb";

View file

@ -53,6 +53,9 @@
# text editors # text editors
neovim neovim
vscodium vscodium
# music
mpc
rmpc
# X11 # X11
hsetroot hsetroot
nitrogen nitrogen
@ -65,7 +68,6 @@
yambar yambar
# misc # misc
catppuccin-sddm catppuccin-sddm
mpc
steam-run steam-run
uxn uxn
]; ];