Compare commits

..

No commits in common. "baae4c3a030c809467120f4e2b9fec2949b2bf0d" and "940c1a751fd3757ecc4ee59017172cced5578fbb" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View file

@ -61,13 +61,6 @@
];
};
services.resolved = {
enable = true;
dnssec = "true";
domains = [ "~." ];
fallbackDns = [ "9.9.9.9" "149.112.112.112" ];
};
# Set your time zone.
time.timeZone = "America/Montreal";

View file

@ -47,7 +47,7 @@ in {
};
keybindings = let
screenshotPath =
"pictures/Screenshots/screenshot`date +%Y%m%d%H%M%S`.png";
"Pictures/Screenshots/screenshot`date +%Y%m%d%H%M%S`.png";
in lib.mkOptionDefault ({ # Screenshot keybinds
"Print" =
"exec grim - | wl-copy && wl-paste > ${screenshotPath}"; # Take screenshot of whole screen, save it, and copy it to clipboard
@ -55,8 +55,6 @@ in {
exec swaymsg -t get_tree | ${pkgs.lib.getExe pkgs.jq} -r '.. | select(.focused?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"' | grim -g - | wl-copy && wl-paste > ${screenshotPath}''; # Take screenshot of current window, save it, and copy it to clipboard
"Ctrl+Print" =
"exec grim -g \"`slurp`\" - | wl-copy && wl-paste > ${screenshotPath}";
"${mod}+Shift+s" =
"exec grim -g \"`slurp`\" - | wl-copy && wl-paste > ${screenshotPath}";
} // rec { # Function Media Keys
XF86MonBrightnessUp = "exec bash ${changebrightness} 1";
XF86MonBrightnessDown = "exec bash ${changebrightness} -1";