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