File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export class ANSIShell extends EventTarget {
95
95
} )
96
96
97
97
this . export_ ( 'LANG' , 'en_US.UTF-8' ) ;
98
- this . export_ ( 'PS1' , '[\\u@puter.com \\w]\\$ ' ) ;
98
+ this . export_ ( 'PS1' , '[\\u@\\h \\w]\\$ ' ) ;
99
99
100
100
for ( const k in env . getEnv ( ) ) {
101
101
console . log ( 'setting' , k , env . get ( k ) ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export const CreateEnvProvider = ({ config }) => {
4
4
return {
5
5
USER : config [ 'puter.auth.username' ] ,
6
6
HOME : '/' + config [ 'puter.auth.username' ] ,
7
- HOSTNAME : 'puter.com' ,
7
+ HOSTNAME : config [ 'puter.domain' ] ,
8
8
}
9
9
} ,
10
10
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export default {
70
70
}
71
71
72
72
lines [ 0 ] += COL + ctx . env . USER + END + '@' +
73
- COL + 'puter.com' + END ;
73
+ COL + ctx . env . HOSTNAME + END ;
74
74
lines [ 1 ] += '-----------------' ;
75
75
lines [ 2 ] += COL + 'OS' + END + ': Puter'
76
76
lines [ 3 ] += COL + 'Shell' + END + ': Puter Shell v' + SHELL_VERSIONS [ 0 ] . v
You can’t perform that action at this time.
0 commit comments