Dock
I moved the dock from the bottom edge to the left side. I’ve done this on macOS and Windows 10 and Windows 11. Having the dock run across the bottom takes up too much screen real estate, especially for very large landscape screens. I don’t keep that much in the dock anyway, so I don’t have to worry about having too many application icons.
Sudo and root access
Unlike Chris Titus’ directions, I did enable root and gave it a password. As I’ve noted in the past I like to have sudo capability, especially in my VMs or in my machines I physically control. Anywhere else, such as in production, I don’t do this and I recommend you don’t do it either.
In the folder /etc/sudoers.d
I place a single line text file. I name this file something memorable. In this instance I’ve named it 010_debian-nopasswd
. Here’s what’s in that file:
debian ALL=(ALL) NOPASSWD: ALL
That allows the account named debian
to perform sudo without typing in the account’s password. This is how Ubuntu handled sudo back in the “good old days.” All of this was done as I was logged in as root. Once this was all set up then I work in the debian account.
PowerLine
I use PowerLine in all my Linux systems, both within vim as well as the shell prompt. These are the steps to install PowerLine and then set it up:
- Install pip — sudo apt install python3-pip
- Install fonts used by PowerLine — sudo apt install fonts-powerline
- Install support for PowerLine in vim — sudo apt install vim-gui-common
- Install PowerLine — sudo apt install python3-powerline
I won’t go into how to get PowerLine running in vim, there’re enough howtos on the web for that. For the shell prompt I add the following two lines to the file .bash_aliases:
export PATH=$PATH:$HOME/.local/bin
source $HOME/.local/lib/python3.10/site-packages/powerline/bindings/bash/powerline.sh
You want to have .local/bin in the path so that the shell script powerline.sh will successfully execute. The screen capture at the top of the post shows PowerLine successfully running in both vim and my bash shell.
You must be logged in to post a comment.