fixes and dwm/x11 config
This commit is contained in:
parent
5aabf26cd7
commit
6e230b9543
@ -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 = [
|
||||||
|
@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
@ -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
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 ];
|
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user