add swaylock config

This commit is contained in:
Leonardo Eugênio 2022-08-02 22:33:21 -03:00
parent 1465a5e746
commit 031f16f3af

View file

@ -155,7 +155,8 @@ let
# vim: ft=fish # vim: ft=fish
''; '';
volumesh = pkgs.writeShellScriptBin "volumesh" (builtins.readFile ./scripts/volumesh); volumesh =
pkgs.writeShellScriptBin "volumesh" (builtins.readFile ./scripts/volumesh);
in { in {
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
# paths it should manage. # paths it should manage.
@ -349,7 +350,8 @@ in {
}; };
home.sessionVariables = { home.sessionVariables = {
EDITOR = "hx"; EDITOR = "hx";
VOLUME_CHANGE_SOUND = "${pkgs.sound-theme-freedesktop}/share/sounds/freedesktop/stereo/audio-volume-change.oga"; VOLUME_CHANGE_SOUND =
"${pkgs.sound-theme-freedesktop}/share/sounds/freedesktop/stereo/audio-volume-change.oga";
}; };
programs.firefox = { programs.firefox = {
enable = true; enable = true;
@ -753,8 +755,9 @@ in {
} }
{ {
timeout = 1800; timeout = 1800;
command = "mpc status | grep \"^\[playing\]\" > /dev/null || swaymsg \"output * dpms off\""; command = ''
resumeCommand = "swaymsg \"output * dpms on\""; mpc status | grep "^[playing]" > /dev/null || swaymsg "output * dpms off"'';
resumeCommand = ''swaymsg "output * dpms on"'';
} }
]; ];
events = [{ events = [{
@ -762,6 +765,24 @@ in {
command = "swaylock -f"; command = "swaylock -f";
}]; }];
}; };
home.file.".config/swaylock/config".text = ''
image=${theme.background}
font=${font.interface}
font-size=${font.size.medium}
indicator-thickness=20
color=${color.bg}
inside-color=#FFFFFF00
bs-hl-color=${color.normal.red}
ring-color=${color.normal.green}
key-hl-color=${accent.color}
# divisor lines
separator-color=#aabbcc00
line-color=#aabbcc00
line-clear-color=#aabbcc00
line-caps-lock-color=#aabbcc00
line-ver-color=#aabbcc00
line-wrong-color=#aabbcc00
'';
services.gammastep = { services.gammastep = {
enable = true; enable = true;
provider = "geoclue2"; provider = "geoclue2";
@ -796,15 +817,15 @@ in {
programs.mako = { programs.mako = {
enable = true; enable = true;
borderSize = 2; borderSize = 2;
padding="5"; padding = "5";
margin="15"; margin = "15";
layer = "overlay"; layer = "overlay";
backgroundColor = color.bg; backgroundColor = color.bg;
borderColor = accent.color; borderColor = accent.color;
progressColor = "over ${accent.color}88"; progressColor = "over ${accent.color}88";
defaultTimeout=10000; defaultTimeout = 10000;
# # {{@@ header() @@}} # # {{@@ header() @@}}
# # text # # text
# font={{@@ font.interface @@}} {{@@ font.size.small @@}} # font={{@@ font.interface @@}} {{@@ font.size.small @@}}
@ -841,10 +862,9 @@ in {
# # vim: ft=ini # # vim: ft=ini
}; };
home.activation = { home.activation = {
install_flatpaks = lib.hm.dag.entryAfter ["writeBoundary"] '' install_flatpaks = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
$DRY_RUN_CMD flatpak $VERBOSE_ARG remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo $DRY_RUN_CMD flatpak $VERBOSE_ARG remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
$DRY_RUN_CMD flatpak $VERBOSE_ARG install -y flathub io.github.spacingbat3.webcord $DRY_RUN_CMD flatpak $VERBOSE_ARG install -y flathub io.github.spacingbat3.webcord
''; '';