Compare commits

..

No commits in common. "34cf2a4483351233f1147860346aceebc0bd5b40" and "0d9df06bcea29b1fe0deb6a261ba791ee10e4a3c" have entirely different histories.

4 changed files with 1 additions and 8 deletions

View File

@ -32,10 +32,6 @@
type = lib.types.str;
description = "Command to use for adjusting brightness";
};
calculatorCommand = lib.mkOption {
type = lib.types.str;
description = "Command to use for quick calculations";
};
toggleBarCommand = lib.mkOption {
type = lib.types.str;
description = "Command to hide and show the status bar.";

View File

@ -123,8 +123,6 @@ in {
"exec --no-startup-id ${config.powerCommand}";
"${modifier}+Shift+m" =
"exec --no-startup-id ${config.brightnessCommand}";
"${modifier}+c" =
"exec --no-startup-id ${config.calculatorCommand}";
"${modifier}+Shift+c" = "reload";
"${modifier}+Shift+r" = "restart";
"${modifier}+Shift+q" = ''

View File

@ -109,7 +109,7 @@
${pkgs.notmuch}/bin/notmuch new > /dev/null
UNREAD=$(${pkgs.notmuch}/bin/notmuch count is:inbox and is:unread)
if [ $UNREAD = "0" ]; then
echo ""
echo "%{T3}%{T-} "
else
echo "%{T2}%{T-} $UNREAD "
fi

View File

@ -165,7 +165,6 @@ in {
${rofi}/bin/rofi -modes drun -show drun -theme-str '@import "launcher.rasi"' '';
systemdSearch = "${pkgs.rofi-systemd}/bin/rofi-systemd";
altTabCommand = "${rofi}/bin/rofi -show window -modi window";
calculatorCommand = "${rofi}/bin/rofi -modes calc -show calc";
audioSwitchCommand = "${
(pkgs.extraLib.mkScript {
name = "switch-audio";