nixpkgs/nixos/modules/services/x11/window-managers/wmii.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2015-12-04 14:32:21 +00:00
with lib;
let
cfg = config.services.xserver.windowManager.wmii;
2015-09-01 11:39:11 +00:00
wmii = pkgs.wmii_hg;
in
{
options = {
services.xserver.windowManager.wmii.enable = mkEnableOption "wmii";
};
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton
# stop wmii by
# $wmiir xwrite /ctl quit
# this will cause wmii exiting with exit code 0
2015-09-01 11:39:11 +00:00
# (or "mod+a quit", which is bound to do the same thing in wmiirc
# by default)
#
# why this loop?
# wmii crashes once a month here. That doesn't matter that much
2015-09-01 11:39:11 +00:00
# wmii can recover very well. However without loop the X session
# terminates and then your workspace setup is lost and all
# applications running on X will terminate.
# Another use case is kill -9 wmii; after rotating screen.
2015-09-01 11:39:11 +00:00
# Note: we don't like kill for that purpose. But it works (->
# subject "wmii and xrandr" on mailinglist)
{ name = "wmii";
start = ''
while :; do
2015-09-01 11:39:11 +00:00
${wmii}/bin/wmii && break
done
'';
};
2015-09-01 11:39:11 +00:00
environment.systemPackages = [ wmii ];
};
}