How do I make my display grayscale? - alredy tried this tutorial, but the folder name doesn't allow "/" in it.
I've tried doing it through Imagemagick, but couldn't properly install it.
Newbie on Linux. Thanks.
How do I make my display grayscale? - alredy tried this tutorial, but the folder name doesn't allow "/" in it.
I've tried doing it through Imagemagick, but couldn't properly install it.
Newbie on Linux. Thanks.
First, install git
:
sudo apt update
sudo apt install git
Next, run the following commands to create the proper folder directory:
mkdir -p ~/.local/share/gnome-shell/extensions/
It may state that the directory already exists. You can ignore this error.
Then, run the following command to download the extension:
git clone https://github.com/laerne/desaturate_all.git
Finally, run the following command to move the files to the proper directory:
mv desaturate_all ".local/share/gnome-shell/extensions/desaturate_all@nicolas.brack.mail.be"
Now, you will need to restart Gnome. Press ALT+F2 and then press R and then press ENTER.
You can enable the extension by browsing to https://extensions.gnome.org/local
Click here for more information.
Please post any errors. Thanks!
It results in:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
(continues in next comment)
– broade Sep 20 '19 at 16:10The following packages have unmet dependencies: git : Depends: liberror-perl but it is not going to be installed Depends: git-man (> 1:2.17.1) but it is not going to be installed Depends: git-man (< 1:2.17.1-.) but it is not going to be installed stacer : Depends: gconf2 Depends: gconf-service Depends: python but it is not going to be installed E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
– broade Sep 20 '19 at 16:11It results in: E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
So I don't know what else to do.
– broade Sep 20 '19 at 16:12sudo
when you run the command so run this instead: sudo apt --fix-broken install
Please post any more errors. Thanks!
– mchid
Sep 20 '19 at 22:12
There is a GNOME Extension for this. You can install this extension with one click form Desaturate All GNOME Extention by laerne. When you install extension, a picture icon appear on the taskbar. When you click, all desktop went to greyscale.
sudo apt update; sudo apt install imagemagick
? – mchid Sep 15 '19 at 03:59