summaryrefslogtreecommitdiff
path: root/home/cez/modules/wayland.nix
blob: af4bb89ffcc98c0e2041d37fe56a56a498899c5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }: let
  wayland-scripts = pkgs.callPackage ../../wayland/pkgs/wayland-scripts {};
  freezshot = "${wayland-scripts}/bin/freezshot";
in {
  wayland.windowManager.sway.settings = {
    # vendor hardcoded screenshot key
    bindsym."mod4+shift+s" = "exec ${freezshot}";
    output."eDP-1".scale = 1.4;
  };

  programs.bemenu.settings.line-height = 25;
}