mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-30 22:53:37 +00:00
~
This commit is contained in:
parent
6e28141f5a
commit
a8b6ce3036
5 changed files with 22 additions and 10 deletions
|
@ -1,3 +1,9 @@
|
|||
hsetroot -cover ~/.dotfiles/assets/wallpapers/current
|
||||
xcompmgr &
|
||||
# dumb yambar workaround https://codeberg.org/dnkl/yambar/issues/429
|
||||
xterm -geometry 1x1+0+18 &
|
||||
temp=$!
|
||||
sleep 1
|
||||
yambar &
|
||||
sleep 1
|
||||
kill $temp
|
||||
|
|
|
@ -73,6 +73,11 @@
|
|||
}
|
||||
'';
|
||||
};
|
||||
#! doesn't seem to do anything ;w;;;;;
|
||||
mpdris2 = {
|
||||
enable = true;
|
||||
mpd.musicDirectory = "/mnt/world/music";
|
||||
};
|
||||
mpris-proxy.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
programs.yambar = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
@ -12,13 +12,12 @@
|
|||
|
||||
left = [
|
||||
{
|
||||
# TODO: mpd <https://www.mankier.com/5/yambar-modules-mpd>
|
||||
# https://codeberg.org/dnkl/yambar/issues/53#issuecomment-264088
|
||||
label = {
|
||||
content.string.text = "god's in his heaven | all's right with the world";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
right = [
|
||||
{
|
||||
battery = {
|
||||
|
|
|
@ -31,6 +31,12 @@
|
|||
xserver.videoDrivers = [ "nvidia" "modesetting" "fbdev" ];
|
||||
};
|
||||
hardware = {
|
||||
graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-media-sdk
|
||||
];
|
||||
};
|
||||
nvidia = {
|
||||
modesetting.enable = true;
|
||||
powerManagement = {
|
||||
|
@ -41,12 +47,6 @@
|
|||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
};
|
||||
opengl = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-media-sdk
|
||||
];
|
||||
};
|
||||
};
|
||||
fonts.fontconfig.subpixel.rgba = "rgb";
|
||||
|
||||
|
|
|
@ -53,6 +53,9 @@
|
|||
# text editors
|
||||
neovim
|
||||
vscodium
|
||||
# music
|
||||
mpc
|
||||
rmpc
|
||||
# X11
|
||||
hsetroot
|
||||
nitrogen
|
||||
|
@ -65,7 +68,6 @@
|
|||
yambar
|
||||
# misc
|
||||
catppuccin-sddm
|
||||
mpc
|
||||
steam-run
|
||||
uxn
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue