1
Fork 0
satellite/home/features/wayland/default.nix
2023-11-11 06:55:14 +01:00

53 lines
1.4 KiB
Nix

# Common wayland stuff
{ lib, pkgs, ... }: {
imports = [
./dunst.nix
./wlsunset.nix
./wlogout.nix
./anyrun.nix
../desktop/wezterm # Default hyprland terminal
../desktop/batsignal.nix
../desktop/eww
];
# TODO: set up
# - volume/backlight controls
# - eww bar
# - configure hyprland colors using base16 stuff
# - look into swaylock or whatever people use
# - multiple keyboard layouts
home.packages =
let
# {{{ OCR
_ = lib.getExe;
wl-copy = "${pkgs.wl-clipboard}/bin/wl-copy";
wl-paste = "${pkgs.wl-clipboard}/bin/wl-paste";
# TODO: put this in it's own file perhaps?
# Taken from [here](https://github.com/fufexan/dotfiles/blob/3b0075fa7a5d38de13c8c32140c4b020b6b32761/home/wayland/default.nix#L14)
wl-ocr = pkgs.writeShellScriptBin "wl-ocr" ''
${_ pkgs.grim} -g "$(${_ pkgs.slurp})" -t ppm - \
| ${_ pkgs.tesseract5} - - \
| ${wl-copy}
${_ pkgs.libnotify} "Run ocr on area with output \"$(${wl-paste})\""
'';
# }}}
in
with pkgs; [
# {{{ Utils
libnotify # Send notifications
wl-ocr # Custom ocr script
wl-clipboard # Clipboard manager
wlogout # Nice logout script
wlsunset # Day/night gamma display adjustments
hyprpicker # Color picker
# }}}
# {{{ Screenshot related tools
grim # Take screenshot
slurp # Area selector
# }}}
];
}