I am using Cinnamon desktop over 14.04. The problem is, I do not get " low battery " warning while in Cinnamon. I also have Gnome Desktop which gives the warning without any problem. Some time back, Unity got automatically removed from my PC. Could that be causing the problem. The battery status is always shown as 100 % in Cinnamon. Help please..
1 Answers
Open a browser and go to github. Create and account by registering your email and desired password.
Type in terminal:
ls -al ~/.ssh
Check the directories to see whether you already have any public ssh keys
By default, the filenames of the public keys are one of the following:
id_dsa.pub
id_ecdsa.pub
id_ed25519.pub
id_rsa.pub
If you see an existing public and private key pair listed (for example id_rsa.pub and id_rsa) then type
ssh-agent bash
ssh-add /location/of/key.pub
Test whether you can login
ssh -v host.with.pubkey
If you don't see any existing public key added then type:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
ssh-add /location/of/key.pub
ssh -v host.with.pubkey
Now open another terminal and go to
cd /root/.ssh
ls
You will see your public rsa key listed as id_rsa.pub Do
vim id_rsa.pub
Open a browser and login to your github account. Go to settings --> ssh and gpg --> add new ssh -->
In the title bar type the name of your computer. Copy the entire content from vim and paste in in ssh key. Click add.
go to Personal access token --> Generate new token --> check all the boxes --> generate --> copy the token to a text file
Go to first terminal
ssh-agent $(ssh-add /root/.ssh/id_rsa; git clone https://github.com/robin92/cinnamon-power-applet.git)
When asked for user name enter it
When asked for password enter the personal access token
cp -R power@airlog.pisz.pl/ ~/.local/share/cinnamon/applets/
Then add the applet to the desired panel
Hope it helps
- 4,136