nix/home/program/bash/module/File.nix

10 lines
117 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
text = ''
# Open file/dir in GUI.
# Usage: o <FILE>
function o() {
xdg-open "''${@}"
}
'';
2024-04-06 03:03:58 +03:00
}