cbrnix / Newaita

Linux icon theme
387 stars 16 forks source link

elementary os large icons in wingpanel #158

Open Belmaj opened 4 years ago

Belmaj commented 4 years ago

can you pls sir fix this i love this icon pack and I decided to install it but the wingpanel is so large sir pls fix it thank you very much for this awesome icon pack. Screenshot from 2020-05-31 05-17-24

cbrnix commented 4 years ago

So far, symbolic icons are only links to the main ones. I would recommend removing them completely in Newaita dir: find. -name "* -symbolic *" -delete then in the index file write interhits=elementary,gnome Then, in the Newaita directory, run the command gtk-update-icon-cache ./

Yakumo-Yukari commented 4 years ago

So far, symbolic icons are only links to the main ones. I would recommend removing them completely in Newaita dir: find. -name "* -symbolic *" -delete then in the index file write interhits=elementary,gnome Then, in the Newaita directory, run the command gtk-update-icon-cache ./

find ./  -name "* -symbolic *" -delete

interhits=elementary,gnome

gtk-update-icon-cache ./

2020-07-13 16 50 06

The problem is still not solved

jonathanburgossaldivia commented 3 years ago

can you pls sir fix this i love this icon pack and I decided to install it but the wingpanel is so large sir pls fix it thank you very much for this awesome icon pack. Screenshot from 2020-05-31 05-17-24

the way to fix big icons is to delete them, but you can use these commands to do it all automatically, first delete the Newaita icon folders and then run this:

( the asterisk is deleted in this comment, but it is like this: sed -i "s/Inherits="dot""asterisk"/... )

mkdir ~/.icons git clone https://github.com/cbrnix/Newaita.git ~/.icons/ cd ~/.icons/ && rm -rf .directory .git wall_ README cover && cd sed -i "s/Inherits=./Inherits=elementary/g" ~/.icons/Newaita/index.theme sed -i "s/Inherits=./Inherits=elementary/g" ~/.icons/Newaita-dark/index.theme find ~/.icons/Newaita-dark/ -type f ( -iname "network-wireless.svg" -o -iname "audio.svg" -o -iname "system.svg" -o -iname "blue.svg" -o -iname "notification.svg") -exec rm -rf {} ; find ~/.icons/Newaita/ -type f ( -iname "network-wireless.svg" -o -iname "audio.svg" -o -iname "system.svg" -o -iname "blue.svg" -o -iname "notification*.svg") -exec rm -rf {} ; gtk-update-icon-cache ~/.icons/Newaita/ gtk-update-icon-cache ~/.icons/Newaita-dark/