7 lines
203 B
Nix
7 lines
203 B
Nix
{ pkgs, ... }:
|
|
pkgs.writeShellScriptBin "flameshot" ''
|
|
export XDG_SESSION_TYPE= QT_QPA_PLATFORM=wayland
|
|
nohup ${pkgs.flameshot}/bin/flameshot >& /dev/null &
|
|
${pkgs.flameshot}/bin/flameshot "$@"
|
|
''
|