I am trying to render Yaru cursor theme. I have a few scripts. But it says
to build and the render the cursor set you'll need
python-pil
andx11-apps
installed.
I am not sure which commands to use to install them. Any help will be great.
I have 18.04 fully updated.
sudo apt install x11-apps
. If it says to install python-pil that's for Python 2. python3-pil is for Python 3. – karel Nov 16 '19 at 16:15apt search python | grep -i pil
(apt is your frontend to dpkg, your packagemanager. search is the search option, python is what you are looking for. grep will give you only the more relevant entrys). same withapt search x11-apps
... And when you know the names, just replace search with install ->apt install [package name]
– LupusE Nov 16 '19 at 16:17