fixes and dwm/x11 config

This commit is contained in:
Maddie H 2023-03-09 21:03:07 +00:00
parent 5aabf26cd7
commit 6e230b9543
No known key found for this signature in database
GPG Key ID: 64FAA9959751687D
8 changed files with 31 additions and 6 deletions

View File

@ -8,7 +8,6 @@
home.file.".local/bin/dmenu" = { home.file.".local/bin/dmenu" = {
source = ./dmenu; source = ./dmenu;
executable = true; executable = true;
recursive = true;
}; };
home.sessionPath = [ home.sessionPath = [

View File

@ -4,6 +4,5 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
gzdoom # Modern doom runner gzdoom # Modern doom runner
pcsx2 # PS2 Emulator# PS2 Emulator# PS2 Emulator pcsx2 # PS2 Emulator# PS2 Emulator# PS2 Emulator
steam # Large games store
]; ];
} }

View File

@ -12,6 +12,7 @@
enable = true; enable = true;
settings = { settings = {
ncmpcpp_directory = "~/.local/share/ncmpcpp"; ncmpcpp_directory = "~/.local/share/ncmpcpp";
lyrics_directory = "~/.local/share/lyrics";
}; };
}; };
} }

View File

@ -15,9 +15,9 @@
0.1 0.1
0.1 0.1
]; ];
opacityRules = [ /* opacityRules = [ */
"90:class_g = 'st-256color'" /* "90:name *= 'st'" */
]; /* ]; */
shadow = true; shadow = true;
vSync = true; vSync = true;
}; };

View File

@ -12,7 +12,6 @@
home.file.".local/bin/statusbar" = { home.file.".local/bin/statusbar" = {
source = ./statusbar; source = ./statusbar;
recursive = true;
executable = true; executable = true;
}; };

16
maddie/tabbed.nix Normal file
View File

@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
tabbed
];
home.file.".local/bin/tabbed" = {
source = ./tabbed;
executable = true;
};
home.sessionPath = [
"$HOME/.local/bin/tabbed"
];
}

3
maddie/tabbed/tabbed-st Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env sh
tabbed -r 2 st -w ''

View File

@ -43,6 +43,14 @@
}; };
buildInputs = oldAttrs.buildInputs ++ [ final.xorg.libXpm ]; buildInputs = oldAttrs.buildInputs ++ [ final.xorg.libXpm ];
}); });
tabbed = prev.tabbed.overrideAttrs (oldAttrs: {
src = final.fetchFromGitHub {
owner = "SpyHoodle";
repo = "tabbed";
rev = "1001f193fd076cba12bd1ec9f113c144b37d8689";
sha256 = "sha256-M5LrFplGfzCdhLTutsPNmox69brvAm2BlXnyza9kGxQ=";
};
});
ncmpcpp = prev.ncmpcpp.override { ncmpcpp = prev.ncmpcpp.override {
visualizerSupport = true; visualizerSupport = true;
clockSupport = true; clockSupport = true;