2024-10-11 23:27:07 +03:00
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
text = ''
|
|
|
|
# CD into host's primary tmp dir.
|
|
|
|
function tmp() {
|
|
|
|
local host="''${HOSTNAME}"
|
|
|
|
local tmp_path
|
2024-04-06 03:03:58 +03:00
|
|
|
|
2024-10-11 23:27:07 +03:00
|
|
|
case "''${host}" in
|
|
|
|
"desktop"|"home")
|
|
|
|
tmp_path="/storage/hot/tmp"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
tmp_path="''${HOME}/tmp"
|
|
|
|
;;
|
|
|
|
esac
|
2024-04-06 03:03:58 +03:00
|
|
|
|
2024-10-11 23:27:07 +03:00
|
|
|
cd "''${tmp_path}"
|
|
|
|
}
|
|
|
|
'';
|
2024-04-06 03:03:58 +03:00
|
|
|
}
|