I am following the following details from another question on this site
You can add an alias to the command by editing the file
.profilein your home directory:gedit $HOME/.profileand adding the following line:
alias lock='gnome-screensaver-command -l'Then from terminal:
source .profileThis will activate the alias. From now on, the alias lock In a terminal will have the effect of locking the screen.
But I have to hit source .profile every time I open a new terminal. I want to make this permanent. What should I do?
3 Answers
After changing the .profile file, you have to logout from your account and login, then it will be sourced once automatically.
Also make sure these file does not exist in your home directory:
~/.bash_profile
~/.bash_loginIf you've got these files, the .profile will be ignored.
~/.profile is evaluated (or “sourced”) automatically whenever a new interactive shell is started. The suggestion to run
source .profileonly refers to shell sessions that were started before the changes to ~/.profile were made.
Therefore you don't need to do anything in addition for these changes to take effect in new/future shell sessions.
I'd say aliases should go in ~/.bash_aliases rather then in ~/.profile, this way you have a nice own file for them and every new opened terminal will have them executed without the need to logout/login.
But to answer you question: To make your changes permanent, you need to do nothing but login once again. source ~/.profile won't be needed any more then.