fixes and dwm/x11 config
This commit is contained in:
parent
5aabf26cd7
commit
6e230b9543
@ -8,7 +8,6 @@
|
||||
home.file.".local/bin/dmenu" = {
|
||||
source = ./dmenu;
|
||||
executable = true;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
home.sessionPath = [
|
||||
|
@ -4,6 +4,5 @@
|
||||
home.packages = with pkgs; [
|
||||
gzdoom # Modern doom runner
|
||||
pcsx2 # PS2 Emulator# PS2 Emulator# PS2 Emulator
|
||||
steam # Large games store
|
||||
];
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
enable = true;
|
||||
settings = {
|
||||
ncmpcpp_directory = "~/.local/share/ncmpcpp";
|
||||
lyrics_directory = "~/.local/share/lyrics";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -15,9 +15,9 @@
|
||||
0.1
|
||||
0.1
|
||||
];
|
||||
opacityRules = [
|
||||
"90:class_g = 'st-256color'"
|
||||
];
|
||||
/* opacityRules = [ */
|
||||
/* "90:name *= 'st'" */
|
||||
/* ]; */
|
||||
shadow = true;
|
||||
vSync = true;
|
||||
};
|
||||
|
@ -12,7 +12,6 @@
|
||||
|
||||
home.file.".local/bin/statusbar" = {
|
||||
source = ./statusbar;
|
||||
recursive = true;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
|
16
maddie/tabbed.nix
Normal file
16
maddie/tabbed.nix
Normal 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
3
maddie/tabbed/tabbed-st
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
tabbed -r 2 st -w ''
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user