10 lines
117 B
Nix
10 lines
117 B
Nix
{ ... }: {
|
|
text = ''
|
|
# Open file/dir in GUI.
|
|
# Usage: o <FILE>
|
|
function o() {
|
|
xdg-open "''${@}"
|
|
}
|
|
'';
|
|
}
|