File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 6969# https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#register-the-ubuntu-net-backports-package-repository
7070# add-apt-repository ppa:dotnet/backports
7171# add-apt-repository ppa:linuxuprising/java
72- add-apt-repository ppa:obsproject/obs-studio
72+ # add-apt-repository ppa:obsproject/obs-studio
7373add-apt-repository ppa:phoerious/keepassxc
7474# add-apt-repository ppa:thopiekar/openrgb
7575if [ " $( hostnamectl chassis) " = " laptop" ]; then
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ if [ "${EUID}" -ne 0 ]; then
66 exit 1
77fi
88
9+ echo " Installing SSH server."
10+ apt-get update
11+ apt-get install openssh-server
12+
913echo " Disabling password login."
1014sed -i " s@#PasswordAuthentication yes@PasswordAuthentication no@g" " /etc/ssh/sshd_config"
1115systemctl restart ssh
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ if ! pgrep -u "${USER}" '^ssh-agent$' > /dev/null; then
2828 ssh-agent > " ${HOME} /.ssh-agent-info"
2929 SSH_AGENT_UPDATED=true
3030fi
31- if [[ " ${SSH_AGENT_PID } " == " " ]] || [ " ${SSH_AGENT_UPDATED } " = true ]; then
31+ if [ " ${SSH_AGENT_UPDATED } " = true ] || [[ " ${SSH_AGENT_PID } " == " " ] ]; then
3232 # echo "SSH agent configuration seems not to be loaded. Loading."
3333 eval " $( < " ${HOME} /.ssh-agent-info" ) " > /dev/null
3434fi
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ bindkey -M isearch " " magic-space
316316
317317# Print stderr with red. For more see
318318# https://github.com/sickill/stderred
319- STDERRED_PATH=" $HOME /Git/stderred/lib64 /libstderred.so"
319+ STDERRED_PATH=" $HOME /Git/stderred/build /libstderred.so"
320320if [ -f $STDERRED_PATH ]; then
321321 export LD_PRELOAD=" ${STDERRED_PATH}${LD_PRELOAD: +: $LD_PRELOAD } "
322322 red_colored_text=$( tput setaf 9)
You can’t perform that action at this time.
0 commit comments