Posts

Showing posts from 2022

Restore File Download Prompt in Firefox

Launch the Firefox browser, and type about:config in the address bar; then hit Enter . Confirm that you accept the risk and will be careful to open Advanced Preferences   In the search box of Advanced Preferences , type browser.download.improvements_to_download_panel   Double-click the found browser.download.improvements_to_download_panel option in the list to set it to false

How to Install Nala

  # Installation Volian Scar Repo Install the Volian Scar repo. echo "deb http://deb.volian.org/volian/ scar main" | sudo tee /etc/apt/sources.list.d/volian-archive-scar-unstable.list wget -qO - https://deb.volian.org/volian/scar.key | sudo tee /etc/apt/trusted.gpg.d/volian-archive-scar-unstable.gpg > /dev/null sudo apt-get install --reinstall python3-debian If you want to add the source repo. echo "deb-src http://deb.volian.org/volian/ scar main" | sudo tee -a /etc/apt/sources.list.d/volian-archive-scar-unstable.list For Ubuntu 22.04 / Debian Sid and newer. sudo apt update && sudo apt install nala For older distributions like Ubuntu 21.04 / Debian Stable and older. sudo apt update && sudo apt install nala-legacy   Convert APT to Nala Add the following to your ~/.bashrc AND /root/.bashrc file: apt() { command nala "$@" } sudo() { if [ "$1" = "apt" ]; then shift command sudo nala "$@...

Installing Powerline on Linuxmint/Ubentu

  1. Add the Universe repository: (for Ubuntu)                        sudo add-apt-repository universe    2.   I nstall Powerline           sudo apt install --yes powerline     3.  To configure Powerline for bash, add the following lines to your $HOME/.bashrc file               # Powerline configuration           if [ -f /usr/share/powerline/bindings/bash/powerline.sh ] ; then           powerline-daemon -q         POWERLINE_BASH_CONTINUATION = 1         POWERLINE_BASH_SELECT = 1         source /usr/share/powerline/bindings/bash/powerline.sh           fi