chore: centralize portal and replace swappy with satty

This commit is contained in:
Nydragon 2024-08-26 16:47:40 +02:00
parent 16140c81a8
commit 4d9b4c0a71
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
6 changed files with 13 additions and 35 deletions

View file

@ -79,15 +79,14 @@ lib.mkIf osConfig.programs.hyprland.enable {
windowrulev2 =
let
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
floatReg = mkRegexList [
"com.nextcloud.desktopclient.nextcloud"
"soffice"
"xdg-desktop-portal-gtk"
];
in
[
"float,initialClass:${
mkRegexList [
"com.nextcloud.desktopclient.nextcloud"
"soffice"
"xdg-desktop-portal-gtk"
]
}"
"float,initialClass:${floatReg}"
"bordercolor rgb(e50000) rgb(ff8d00) rgb(ffee00) rgb(028121) rgb(004cff) rgb(770088), fullscreen:1"
"focusonactivate, title:${mkRegexList [ "Firefox" ]}"
"workspace 2,initialClass:${mkRegexList [ "firefox" ]}"
@ -158,7 +157,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
"$mod, F, fullscreen, 0"
"$mod, N, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
"$mod, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m region"
"$mod SHIFT, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${pkgs.swappy}/bin/swappy -f -"
"$mod SHIFT, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${pkgs.satty}/bin/satty -f - --fullscreen"
#: Brightness and Media {{{
",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%"

View file

@ -93,7 +93,7 @@
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
"Print" = "exec ${pkgs.scripts.screenshot}/bin/screenshot";
"${mod}+u" = "exec ${pkgs.scripts.screenshot}/bin/screenshot";
"${mod}+Shift+u" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.swappy}/bin/swappy -f -";
"${mod}+Shift+u" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.satty}/bin/satty -f - --fullscreen";
#: Workspace movement {{{
"--input-device=${inputs.kb.builtin} ${mod}+ampersand" = "workspace number 1";

View file

@ -29,14 +29,7 @@
};
#: }}}
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
];
};
xdg.portal.enable = true;
services.displayManager.sddm.enable = true;

View file

@ -123,21 +123,7 @@
services.dbus.enable = true;
xdg.portal = {
enable = true;
wlr = {
settings = {
screencast = {
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
};
};
enable = true;
};
config.common.default = "*";
# gtk portal needed to make gtk apps happy
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
xdg.portal.enable = true;
services.gvfs.enable = true;

View file

@ -19,5 +19,6 @@
./system/printing.nix
./system/audio.nix
./secrets.nix
./portals.nix
];
}

View file

@ -4,11 +4,11 @@
pkgs,
...
}:
lib.mkIf config.xdg.portal.enabme {
lib.mkIf config.xdg.portal.enable {
xdg.portal = {
config = {
sway = {
"org.freedesktop.impl.portal.Screenshot.PickColor" = [ "hyprpicker" ];
"org.freedesktop.impl.portal.Screenshot.PickColor" = [ "${pkgs.hyprpicker}/bin/hyprpicker" ];
};
common.default = "*";
};
@ -19,5 +19,4 @@ lib.mkIf config.xdg.portal.enabme {
xdg-desktop-portal-hyprland
];
};
}