Merge pull request #10644 from NixOS/revert-10635-i3log

Revert "i3wm: Add debug & logging options"
This commit is contained in:
Arseniy Seroka 2015-10-27 13:40:29 +03:00
commit 3225c34dcc
1 changed files with 1 additions and 22 deletions

View File

@ -23,23 +23,6 @@ in
If left at the default value, $HOME/.i3/config will be used. If left at the default value, $HOME/.i3/config will be used.
''; '';
}; };
debug = mkOption {
default = false;
example = true;
type = types.bool;
description = "Enable debug/verbose logging (see -V option)";
};
logFile = mkOption {
default = null;
example = "$HOME/.i3/i3log";
type = types.string;
description = ''
Path to a logfile for i3.
If left at the default value, logs will appear in display-manager.service's logs.
'';
};
}; };
}; };
@ -49,11 +32,7 @@ in
name = "i3"; name = "i3";
start = '' start = ''
${pkgs.i3}/bin/i3 ${optionalString (cfg.configFile != null) ${pkgs.i3}/bin/i3 ${optionalString (cfg.configFile != null)
''-c "${cfg.configFile}"'' "-c \"${cfg.configFile}\""
} ${optionalString cfg.debug
''-V''
} ${optionalString (cfg.logFile != null)
''>> "${cfg.logFile}"''
} & } &
waitPID=$! waitPID=$!
''; '';