You are not logged in.
Pages: 1
Hi there,
it's really easy to install icons by using User Interface Setting but how do I remove them? The icons I have added are not in /usr/share/icons...
Offline
you'll find that most of them are found in /home/"user"/.themes, for me that would be /home/john/.themes.
if you cant view .themes try pressing ctrl+h and that should do the trick ^^
Offline
you'll find that most of them are found in /home/"user"/.themes, for me that would be /home/john/.themes.
if you cant view .themes try pressing ctrl+h and that should do the trick ^^
Well, there are no files in that folder (yes, show hidden files is activated) ...
Offline
bump... 
Still can't find a solution for that.
Offline
Have a look in the .icons folder of your home directory
Offline
Have a look in the .icons folder of your home directory
I dunno why but there is none... 
Offline
Offline
Do a search for the icon theme name.
I have tried that as well but can't find anything. I just want to remove gnome-colors, gnome-brave-gnome-wine and so on and do an upgrade.
Offline
This is the script lxappearance uses to install icons, I however am no expert in deciphering it.
#!/bin/sh
# Script used to install new icon theme.
# Copyright (C) 2008 paulliu, pcman
# License: GNU GPL
# test argc
if (test $# -ne 1)
then
echo Usage: $0 compressed_file
exit
fi
# make temp dir
TMPDIR=`mktemp -d /tmp/icon-theme-XXXXXXX`
# decompress
if [ `basename -- $1 .tar.gz` != $1 ]
then
tar -C $TMPDIR -xzf $1
elif [ `basename -- $1 .tar.bz2` != $1 ]
then
tar -C $TMPDIR -xjf $1
fi
# create destdir
if [ -z "$XDG_DATA_HOME" ]
then
export XDG_DATA_HOME="$HOME/.local/share";
fi
THEME_DIR="$XDG_DATA_HOME/icons"
mkdir -p "$THEME_DIR"
# install
cd $TMPDIR
DLIST=`find -name 'index.theme' -exec dirname {} \;`
for DIR in $DLIST
do
basename "$DIR"
mv -f "$DIR" "$THEME_DIR"
done
# clear temp dir
rm -rf $TMPDIROffline
heres pretty much what it does.
make temp dir to extract the files to
then it untar's the file into the temp directory
then it makes a directory HOME/.local/share/icons/theme-name
then copies everything over to the theme directory (it copies from wherever the index.theme is incase it's within a subfolder), and deletes the temp directory.
I say never be complete, I say stop being perfect, I say lets evolve, let the chips fall where they may.
Offline
Thanks Iggy.
So Marvel make sure to check that directory and if you find your icon theme, then remove it.
And since you mentioned GNOME-Colors, I find using the PPA is an easier way to install and keep it updated.
Offline
Hey guys, thanks! That's awesome. You rock! 
Offline
Pages: 1
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.