epic timer!
This commit is contained in:
parent
7a59fc2a74
commit
281ec88147
3 changed files with 42 additions and 1 deletions
|
@ -73,6 +73,7 @@
|
|||
xdg.enable = true;
|
||||
|
||||
stuff = {
|
||||
timer.enable = true;
|
||||
xserver.enable = true;
|
||||
sddm.enable = true;
|
||||
alacritty.enable = true;
|
||||
|
|
|
@ -24,5 +24,6 @@
|
|||
./stuff/other-dev-programs.nix
|
||||
./stuff/mpd.nix
|
||||
./stuff/xdg.nix
|
||||
./stuff/timer.nix
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
39
modules/stuff/timer.nix
Normal file
39
modules/stuff/timer.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib, pkgs, config, ...}: let
|
||||
inherit (lib) mkIf mkEnableOption mkOption;
|
||||
cfg = config.chuj.stuff.timer;
|
||||
user = config.chuj.system.user;
|
||||
in {
|
||||
options.chuj.stuff.timer = {
|
||||
enable = mkEnableOption "timer";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = let
|
||||
timer = (pkgs.stdenv.mkDerivation {
|
||||
name = "timer";
|
||||
src = pkgs.fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "krizej";
|
||||
repo = "bins";
|
||||
rev = "1f45e92ea4c700dd220ce11ecad8d56268ea08ce";
|
||||
hash = "sha256-5MnE4n1bCt2DPTejCcwVozIa7ITUdekryETELOL0gxE=";
|
||||
};
|
||||
buildPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
cc timer.c -o $out/bin/timer
|
||||
'';
|
||||
});
|
||||
in [
|
||||
(pkgs.writeShellScriptBin "timer" ''
|
||||
${lib.getExe pkgs.alacritty} -o "font.size=32" --class TerminalTimer --title timer --command "${timer}/bin/timer"
|
||||
'')
|
||||
];
|
||||
home-manager.users.${user}.xsession.windowManager.i3.config = mkIf config.chuj.stuff.i3.enable {
|
||||
window.commands = [{
|
||||
criteria.class = "TerminalTimer";
|
||||
# epic hardcoding!
|
||||
command = "resize set 215 55";
|
||||
}];
|
||||
floating.criteria = [{ class = "TerminalTimer"; }];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue