descarga kAwOken

KDE, Gnome, XFCE, E17, compiz, tuning del escritorio y mas aqui.

Moderador: frank

Avatar de Usuario
JorgeN
Mensajes: 93
Registrado: Jue, 28 Mar 2013, 08:27

descarga kAwOken

Mensaje por JorgeN » Mar, 17 Dic 2013, 11:43

alguien sabe donde se puede descargar en un .cu el tema de iconos AwOken para KDE?

Avatar de Usuario
KZKG^Gaara
Mensajes: 463
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /dev/kzkggaara
Contactar:

Re: descarga kAwOken

Mensaje por KZKG^Gaara » Jue, 19 Dic 2013, 14:25

~~» KZKG^Gaara «~~
Usuario #518082 de GNU/Linux
Windows ha detectado que no tiene teclado... presione [F9] para continuar.

Avatar de Usuario
JorgeN
Mensajes: 93
Registrado: Jue, 28 Mar 2013, 08:27

Re: descarga kAwOken

Mensaje por JorgeN » Vie, 20 Dic 2013, 12:54

Gracias @KZKG^Gaara por el vinculo, una pregunta? el tema Awoken funciona bien con kde es que habia escuchado hablar de un tal KAwOken.

Avatar de Usuario
KZKG^Gaara
Mensajes: 463
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /dev/kzkggaara
Contactar:

Re: descarga kAwOken

Mensaje por KZKG^Gaara » Vie, 20 Dic 2013, 14:07

Nunca lo he usado pero, en teoría, debería funcionar sin muchos problemas.
~~» KZKG^Gaara «~~
Usuario #518082 de GNU/Linux
Windows ha detectado que no tiene teclado... presione [F9] para continuar.

Avatar de Usuario
llamaret
Mensajes: 828
Registrado: Vie, 17 Dic 2010, 14:00
Ubicación: 127.0.0.1
Contactar:

Re: descarga kAwOken

Mensaje por llamaret » Lun, 23 Dic 2013, 12:27

KZKG^Gaara escribió:Nunca lo he usado pero, en teoría, debería funcionar sin muchos problemas.
Negativo, Awoken no sirve para KDE, en KDE hay que usar kAwoken, no lo subo a GUTL por el gran tamaño
if (la_mayoria_de_las_ranas_tienen_pelo == true)
{
msg (”Windows es bueno”)
}

Avatar de Usuario
BishopWolf
Mensajes: 145
Registrado: Vie, 14 Ene 2011, 11:49
Ubicación: /home/San José de las Lajas

Re: descarga kAwOken

Mensaje por BishopWolf » Lun, 23 Dic 2013, 15:36

el kAwoken es básicamente el mismo Awoken pero con un script adaptado para que funcione en kde, si tienes el kawoken puedes compartir el script y el resto ya está compartido donde dice gaara
--------------------------------------------------------
Ubuntu_14.04_Trusty_Tahr
Linux_3.13_amd64
KDE_4.13

Avatar de Usuario
JorgeN
Mensajes: 93
Registrado: Jue, 28 Mar 2013, 08:27

Re: descarga kAwOken

Mensaje por JorgeN » Mar, 24 Dic 2013, 08:32

ha ya gracias a todos por la aclaración ya el Awoken lo tengo me faltaria el script que dice @BishopWolf, por cierto que paquete de iconos que funcionen en KDE estan en la red .cu? es que los iconitos por defectos no me gustan nada :P jeje

Avatar de Usuario
BishopWolf
Mensajes: 145
Registrado: Vie, 14 Ene 2011, 11:49
Ubicación: /home/San José de las Lajas

Re: descarga kAwOken

Mensaje por BishopWolf » Mar, 24 Dic 2013, 08:45

Y dilo, esas carpeticas de colores.....
Prefiero el Awoken clear que son grises pero no me las carga el KDE, asi que espero por el script del kawoken
--------------------------------------------------------
Ubuntu_14.04_Trusty_Tahr
Linux_3.13_amd64
KDE_4.13

Avatar de Usuario
BishopWolf
Mensajes: 145
Registrado: Vie, 14 Ene 2011, 11:49
Ubicación: /home/San José de las Lajas

Re: descarga kAwOken

Mensaje por BishopWolf » Mar, 24 Dic 2013, 10:47

Bueno terminé bajando el kawoken, aquí están los scripts
kawoken-icon-theme-customization-clear

Código: Seleccionar todo

#!/bin/bash

CURDIR=`pwd`

# Version of the iconset:
VER="1.5"
# Name of the iconset (normal, big, little):
ICNST="kAwOken"
ICNSTG="kAWOKEN"
# File in wich are present configuration options:
CONFFILE="$HOME/.kAwOkenrc"
# Path for the DA installation:
CONFDIR="`kde4-config --localprefix`share/icons/$ICNST"
# Path for the ppa installation:
USRDIR="/usr/share/icons/$ICNST"

clear
# Just as control if something is wrong:
echo $CURDIR

echo "*************************************************************************"
echo ""
echo "Customization script for $ICNST icon set. Current Release: $VER"
echo ""
# Checks if zenity is installed, if not continue with the old fashioned script.
if [ -x /usr/bin/zenity ]; then 
  ZEN="1"
  EX="z.sh"
else
  ZEN="0"
  EX=".sh"
fi

if [ -d $USRDIR ]; then
	INSTALLATION="ppa"
	DIR=$USRDIR
elif [ -d $CONFDIR ]; then
	INSTALLATION="DA_download"
	DIR=$CONFDIR
else
	echo "It seems that the set is not in a expected location (or there's a bug in the script). If you think there's a bug, please send me a mail or a message in whatever way you prefer."
	echo "I'll stop here."
	exit
fi

echo "*************************************************************************"

if [ $ZEN == 1 ]; then
  OPTION=`zenity --title="$ICNSTG $VER Customization script" --list --text="Select an option from below:\t\t\t\t\t\t\t" --radiolist --column "" --column "" FALSE "Something went wrong? Choose this option!" FALSE "Configure the set" FALSE "Recover configuration options from previous installations" FALSE "Quit" --width="410" --height="270"`
elif [ $ZEN == 0 ]; then
  echo "Select an option from below (type the number of your choice):" 
  PS3="Wich option do you prefer? "
  select OPTION in "Something went wrong? Choose this option!" "Configure the set" "Recover configuration options from previous installations" "Quit"
  do
    break
  done
fi

#************************************************************************
# If number of choice doesn't exist, print an error and exit
if [ "$OPTION" = "" ]; then
    if [ $ZEN == 1 ]; then
        zenity --warning --text="\nERROR: You selected nothing\!\nRe-run the script and select a proper option." --title="ERROR"
    else
    	echo "Wrong choice! Remember to type the number of your choice."
    fi
else
	echo "You chose: $OPTION"
    #************************************************************************
    # If something went wrong, remove configuration file and icon folder in $CONFDIR (if installation is by ppa)
    if [ "$OPTION" = "Something went wrong? Choose this option!" ]; then
	    echo "Now I'll remove configuration file and older options."

	    if [ -d $USRDIR ] && [ -d $CONFDIR ]; then
	        rm -rf $CONFDIR
	    fi
	    if [ -f $CONFFILE ];then
		    rm $CONFFILE
	    fi
	    
	    echo "Now I'll run configuration script"	
	    bash $DIR/extra/configure$EX $DIR	    
    #************************************************************************
    # This option explains by itself	
    elif [ "$OPTION" = "Configure the set" ]; then
	    echo "Now I'll run configuration script"
	    bash $DIR/extra/configure$EX $DIR
    #************************************************************************
    # This option explains by itself
    elif [ "$OPTION" = "Recover configuration options from previous installations" ]; then			
	    echo "Now I'll recover configuration options"
	    bash $DIR/extra/recover.sh $DIR
    #************************************************************************
    # This option explains by itself
    elif [ "$OPTION" = "Quit" ]; then
	    echo "Now I'll quit."
    fi
fi
kawoken-icon-theme-customization

Código: Seleccionar todo

#!/bin/bash

CURDIR=`pwd`

# Version of the iconset:
VER="1.5"
# Name of the iconset (normal, big, little):
ICNST="kAwOken"
ICNSTG="KAWOKEN"
ICNSTP="kawoken"
# File in which are present configuration options:
CONFFILE="$HOME/."$ICNST"rc"
# Path for the DA installation:
CONFDIR="`kde4-config --localprefix`share/icons"
# Path for the ppa installation:
USRDIR="/usr/share/icons"

echo "*************************************************************************"
echo "Initial settings. Current Release: $VER"
echo " "
echo "Please consider a small donation (1$ goes a long way) via PayPal to 'alecive87@gmail.com'"
echo "*************************************************************************"
# Checks if zenity is installed, if not continue with the old fashioned script.
if [ -x /usr/bin/zenity ]; then 
  echo "SUCCESS! Zenity was found."
  ZEN="1"
	
  zenity --info --title="$ICNSTG $VER Customization script" --text="***********************************************************************************************\n\t\t\t\t\t\t\t<b>$ICNST $VER CUSTOMIZATION SCRIPT</b>\n\nThanks for choosing $ICNST iconset, and welcome to the latest version of $ICNST customization script.\n\nSince the ever growing nature of this software, it's more than welcome any notification of any bug you will (surely) find.\nIf so, please send me a mail to <i>'alecive87@gmail.com'</i>, trying to explain briefly the problem you encountered. If necessary (as often is), be sure to attach the whole terminal output, so I can easily manage the issue.\n\n***********************************************************************************************\n\nIf you like efforts that i put in this work, or you think that I'm a nice guy, or that anyway I deserve a contribution, please consider a small donation (1$ goes a long way) via PayPal to <i>'alecive87@gmail.com'</i>.\n\n***********************************************************************************************\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t  Click the Close button to continue."
else
  echo "WARNING: Zenity not found. Please install zenity to use this script from 2.0 Version."
  echo "         Anyway, I'll run the script in the old terminal fashion."
  ZEN="0"
fi

if [ -d $USRDIR/$ICNST ]; then
	INSTALLATION="ppa"
	DIR=$USRDIR
elif [ -d $CONFDIR/$ICNST ]; then
	INSTALLATION="DA_download"
	DIR=$CONFDIR
else
	echo "It seems that the set is not in a expected location (or there's a bug in the script). If you think there's a bug, please send me a mail or a message in whatever way you prefer."
	echo "I'll stop here."
	exit
fi

echo "Installation directory -> $DIR/$ICNST " 
echo "Installation modality -> $INSTALLATION"
echo "*************************************************************************"
extraset=(`ls $CONFDIR | grep $ICNST-`)
echo "Now I'll search if there are already colored iconsets in your $CONFDIR directory."
echo "I found these: ${extraset[@]}"

if [ $ZEN == 1 ]; then
    RES=""
    for i in ${extraset[@]}; do
        RES="$RES FALSE Customize_$i"
    done

    OPTION=`zenity --title="$ICNSTG $VER Customization script" --list --text="Select an option from below:\t\t\t\t\t\t\t" --radiolist --column "" --column "" TRUE "Take a look at the README pdf with instructions" FALSE "Customize Clear version" FALSE "Customize Dark version" FALSE "Customize White version" $RES FALSE 'Colorize the iconset' FALSE "Remove a colored iconset" FALSE "Quit" --height="400"`
elif [ $ZEN == 0 ]; then
    RES=""
    for i in ${extraset[@]}; do
        RES="$RES Customize_$i"
    done
    
    echo "Select an option of choice from below:" 
    PS3="What option do you prefer? "
    select OPTION in "Take a look at the README pdf with instructions" "Customize Clear version" "Customize Dark version" "Customize White version" $RES "Colorize the iconset" "Remove a colored iconset" "Quit"
    do
        break
    done
fi

#************************************************************************
if [ "$OPTION" = "" ]; then
    if [ $ZEN == 1 ]; then
        zenity --warning --text="\nERROR: You selected nothing\!\nRe-run the script and select a proper option." --title="ERROR"
    else
    	echo "Wrong choice! Remember to type the number of your choice."
    fi
else
	echo "You chose: $OPTION"
#************************************************************************
	if [ "$OPTION" = "Customize Clear version" ]; then
	  if [ -f $DIR/$ICNST/$ICNSTP-icon-theme-customization-clear ]; then
		echo "Now I'll run customization script for Clear version."
		echo "*************************************************************************"
		bash $DIR/$ICNST/$ICNSTP-icon-theme-customization-clear
      else
        echo "It seems that there isn't any customization script for the clear iconset located in $DIR/$ICNST."
      fi
#************************************************************************
	elif [ "$OPTION" = "Customize Dark version" ]; then
	  if [ -f $DIR/$ICNST"Dark"/$ICNSTP-icon-theme-customization-dark ]; then
		echo "Now I'll run customization script for Dark version."
		echo "*************************************************************************"
		bash $DIR/$ICNST"Dark"/$ICNSTP-icon-theme-customization-dark
      else
        echo "It seems that there isn't any customization script for the dark iconset located in $DIR/$ICNST"Dark.
      fi
#************************************************************************
	elif [ "$OPTION" = "Customize White version" ]; then
	  if [ -f $DIR/$ICNST"White"/$ICNSTP-icon-theme-customization-white ]; then
		echo "Now I'll run customization script for White version."
		echo "*************************************************************************"
		bash $DIR/$ICNST"White"/$ICNSTP-icon-theme-customization-white
      else
        echo "It seems that there isn't any customization script for the white iconset located in $DIR/$ICNST"White.
      fi
#************************************************************************
	elif [ "$OPTION" = "Colorize the iconset" ]; then
      if [ -x /usr/bin/convert ]; then 
        echo "Now I'll run colorization script for $ICNST iconset."
        bash $DIR/$ICNST/extra/colorscripts/colorize.sh $DIR
      else
        if [ $ZEN == 1 ]; then
          zenity --warning --text="\nERROR: It seems you don't have imagemagick installed. Please install it before running this part of the script.\n\nQuick tip for Ubuntu users: search and install 'imagemagick' from Ubuntu Software Center or simply type in a terminal: 'sudo apt-get install imagemagick'." --title="ERROR"
        else
    	  echo -e "ERROR: It seems you don't have imagemagick installed. Please install it before running this part of the script.\n\nQuick tip for Ubuntu users: search and install 'imagemagick' from Ubuntu Software Center or simply type in a terminal: 'sudo apt-get install imagemagick'."
        fi
        echo "Now I'll quit."
      fi
#************************************************************************
	elif [ "$OPTION" = "Remove a colored iconset" ]; then
	  if [ $ZEN == 1 ]; then
	    RES=""
        for i in ${extraset[@]}; do
          RES="$RES FALSE $i"
        done
        ICONSET=`zenity --title="$ICNSTG $VER Customization script" --list --text="Select the iconset that you want to remove:" --radiolist --column "" --column "" $RES --height="370"`
	  elif [ $ZEN == 0 ]; then
        echo "Select the iconset that you want to remove (type the number of choice):"
        select ICONSET in ${extraset[@]}
        do
          break
        done
	  fi

      if [ "$ICONSET" = "" ]; then
        if [ $ZEN == 1 ]; then
          zenity --warning --text="\nERROR: You selected nothing\!\nRe-run the script and select a proper option." --title="ERROR"
        else
    	  echo "Wrong choice! Remember to type the number of your choice. I'll exit here."
        fi
      else
          echo "You chose: $ICONSET"
          rm -rf $CONFDIR/$ICONSET
	        if [ -f ~/.${ICNST}rc-${ICONSET:8:9} ]; then
    	      rm ~/.${ICNST}rc-${ICONSET:8:9}
  	      fi
      fi
    echo "DONE. Remember to choose another iconset if the deleted one was your current iconset."
	#************************************************************************
	# This option explains by itself - but after viewing pdf file, user might want to
	# customize the set, so it re-prints the question
	elif [ "$OPTION" = "Take a look at the README pdf with instructions" ]; then
		  echo "Now I'll open readme file (if xdg-open is supported)."
		  if [ -f $DIR/$ICNST/Installation_and_Instructions.pdf ]; then
			xdg-open $DIR/$ICNST/Installation_and_Instructions.pdf &
		  else
			echo "Sorry, I cannot find the file, or xdg-open doesn't exist on your pc."
		  fi
#************************************************************************
	elif [ "$OPTION" = "Quit" ]; then
		  echo "Now I'll quit."
  else
      OPTION=${OPTION:11}
	    if [ -f $CONFDIR/$OPTION/$ICNSTP-icon-theme-customization-${OPTION:8} ]; then
		      echo "Now I'll run customization script for $ICNST iconset colored with ${OPTION:8:3}/${OPTION:11:3}/${OPTION:14:3} color."
		      echo "*************************************************************************"
		      bash $CONFDIR/$OPTION/$ICNSTP-icon-theme-customization-${OPTION:8}
      else
          echo "It seems that there isn't any customization file for the colored iconset located in $CONFDIR/$OPTION/."
      fi
	fi
fi
index.theme

Código: Seleccionar todo

[Icon Theme]
Name=kAwOken
Comment=Awesome Token for KDE
Inherits=ubuntu-mono-dark,gnome,hicolor,oxygen
Example=python

LinkOverlay=link
LockOverlay=lockoverlay
ShareOverlay=share
ZipOverlay=zip

DesktopDefault=48
DesktopSizes=16,22,32,48,64,128
ToolbarDefault=22
ToolbarSizes=16,22,32,48
MainToolbarDefault=22
MainToolbarSizes=16,22,32,48
SmallDefault=16
SmallSizes=16,22
PanelDefault=32
PanelSizes=16,22,24,32,48,64,128

Directories=clear/128x128/emotes,clear/128x128/actions,clear/128x128/apps,clear/128x128/categories,clear/128x128/devices,clear/128x128/emblems,clear/128x128/mimetypes,clear/128x128/places,clear/128x128/status,clear/128x128/stock,clear/64x64/apps,clear/48x48/apps,clear/32x32/apps,clear/22x22/actions,clear/22x22/apps,clear/22x22/mimetypes,clear/22x22/status,clear/22x22/stock,clear/22x22/places,clear/16x16/actions,clear/16x16/apps,clear/16x16/status

[clear/16x16/actions]
Size=16
Context=Actions
Type=Threshold

[clear/16x16/apps]
Size=16
Context=Applications
Type=Threshold

[clear/16x16/status]
Size=16
Context=Status
Type=Threshold

[clear/22x22/actions]
Size=22
Context=Actions
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/apps]
Size=22
Context=Applications
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/categories]
Size=22
Context=Categories
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/devices]
Size=22
Context=Devices
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/emblems]
Size=22
Context=Emblems
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/emotes]
Size=22
Context=Emotes
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/mimetypes]
Size=22
Context=MimeTypes
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/places]
Size=22
Context=Places
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/status]
Size=22
Context=Status
Type=Scalable
MinSize=1
MaxSize=22

[clear/22x22/stock]
Size=22
Context=Stock
Type=Scalable
MinSize=1
MaxSize=22

[clear/32x32/apps]
Size=32
Context=Applications
Type=Threshold

[clear/48x48/apps]
Size=48
Context=Applications
Type=Threshold

[clear/64x64/apps]
Size=64
Context=Applications
Type=Threshold

[clear/128x128/actions]
Size=128
Context=Actions
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/apps]
Size=128
Context=Applications
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/categories]
Size=128
Context=Categories
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/devices]
Size=128
Context=Devices
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/emblems]
Size=128
Context=Emblems
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/emotes]
Size=128
Context=Emotes
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/mimetypes]
Size=128
Context=MimeTypes
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/places]
Size=128
Context=Places
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/status]
Size=128
Context=Status
Type=Scalable
MinSize=23
MaxSize=128

[clear/128x128/stock]
Size=128
Context=Stock
Type=Scalable
MinSize=23
MaxSize=128
--------------------------------------------------------
Ubuntu_14.04_Trusty_Tahr
Linux_3.13_amd64
KDE_4.13

Avatar de Usuario
JorgeN
Mensajes: 93
Registrado: Jue, 28 Mar 2013, 08:27

Re: descarga kAwOken

Mensaje por JorgeN » Mar, 07 Ene 2014, 09:54

este... me podrias decir que hago con ellos? es decir, donde los pongos??

Responder