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" = {
source = ./dmenu;
executable = true;
recursive = true;
};
home.sessionPath = [

View File

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

View File

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

View File

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

View File

@ -12,7 +12,6 @@
home.file.".local/bin/statusbar" = {
source = ./statusbar;
recursive = 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 ];
});
tabbed = prev.tabbed.overrideAttrs (oldAttrs: {
src = final.fetchFromGitHub {
owner = "SpyHoodle";
repo = "tabbed";
rev = "1001f193fd076cba12bd1ec9f113c144b37d8689";
sha256 = "sha256-M5LrFplGfzCdhLTutsPNmox69brvAm2BlXnyza9kGxQ=";
};
});
ncmpcpp = prev.ncmpcpp.override {
visualizerSupport = true;
clockSupport = true;