diff --git a/home/scripts/default.nix b/home/scripts/default.nix index f86d9f9..9926cfa 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -4,8 +4,8 @@ config, ... }: - let + inherit (pkgs.writers) writeFishBin writeBashBin; nixos-rebuild = name: word: pkgs.writers.writeBashBin name '' @@ -35,7 +35,7 @@ in ''; }; - set-background = pkgs.writers.writeFishBin "set-background" '' + set-background = writeFishBin "set-background" '' argparse 'f/file=!test -e "$_flag_value"' -- $argv; or return set pids $(pidof swaybg) @@ -54,11 +54,11 @@ in end ''; - nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR ."; + nixedit = writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR ."; getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq"; - rpaste = pkgs.writers.writeBashBin "rpaste" '' + rpaste = writeBashBin "rpaste" '' export $(cat ${config.age.secrets.rustypaste.path} | xargs) curl -F "file=@$1" -H "Authorization: $AUTH_TOKEN" https://rusty.ccnlc.eu/ ''; @@ -67,13 +67,22 @@ in genswitch = nixos-rebuild "genswitch" "switch"; - fishl = pkgs.writers.writeFishBin "fishl" ./logo.fish; + fishl = writeFishBin "fishl" ./logo.fish; - nrun = pkgs.writers.writeFishBin "nrun" '' + nrun = writeFishBin "nrun" '' if echo $argv[1] | grep -Eq '^(github):.+/.+$' nix run $argv[1] -- $argv[2..] else nix run nixpkgs#$argv[1] -- $argv[2..] end ''; + + editsym = writeFishBin "editsym" '' + for file in $argv + cp "$file" "$file.tmp" + unlink "$file" + mv "$file.tmp" "$file" + chmod -R 777 "$file" + end + ''; } diff --git a/hosts/brontes/home.nix b/hosts/brontes/home.nix index da6edd1..306626f 100644 --- a/hosts/brontes/home.nix +++ b/hosts/brontes/home.nix @@ -78,7 +78,7 @@ scripts.rpaste scripts.genswitch scripts.gentest - + scripts.editsym ]; }; }; diff --git a/hosts/marr/home.nix b/hosts/marr/home.nix index d836b1c..e222f50 100644 --- a/hosts/marr/home.nix +++ b/hosts/marr/home.nix @@ -78,6 +78,7 @@ scripts.nrun scripts.genswitch scripts.gentest + scripts.editsym ]; }; }; diff --git a/modules/portals.nix b/modules/portals.nix new file mode 100644 index 0000000..87a72b1 --- /dev/null +++ b/modules/portals.nix @@ -0,0 +1,23 @@ +{ + lib, + config, + pkgs, + ... +}: +lib.mkIf config.xdg.portal.enabme { + xdg.portal = { + config = { + sway = { + "org.freedesktop.impl.portal.Screenshot.PickColor" = [ "hyprpicker" ]; + }; + common.default = "*"; + }; + + # gtk portal needed to make gtk apps happy + extraPortals = with pkgs; [ + xdg-desktop-portal-gtk + xdg-desktop-portal-hyprland + ]; + }; + +}