Tag Archives: fedora

Install Nodoka (Fedora theme) on Ubuntu (II)

I was explaining here how to install Nodoka theme on Ubuntu.
Or you can use this small script I made to automate this.

PS: You need to have libsexy-dev installed. If not, just run this command in your terminal:

sudo apt-get --assume-yes --force-yes install libsexy-dev

I hope you’ll find it usefull.
Here is the script:

#!/bin/bash
cd $HOME/Desktop
w3m https://fedorahosted.org/nodoka/wiki > page
daemon=`cat page | grep notification |cut -f1 -d" "`
theme=`cat page | grep nodoka-theme |cut -f1 -d" "`
engine=`cat page | grep gtk-nodoka-engine |cut -f1 -d" "`
wget https://fedorahosted.org/releases/n/o/nodoka/$daemon
wget https://fedorahosted.org/releases/n/o/nodoka/$theme
wget https://fedorahosted.org/releases/n/o/nodoka/$engine
tar zxvf $engine
cd gtk-nodoka-engine-*
./configure --prefix=/usr --enable-animation
make
sudo make install
cd ..
tar zxvf $theme
cd nodoka-theme-gnome-*
sudo cp -rv Nodoka/ /usr/share/themes/
cd ..
tar zxvf $daemon
cd notification-daemon-engine-nodoka-*
./configure --prefix=/usr
make
sudo make install
cd ..
cd $HOME/Desktop
rm $daemon
rm $theme
rm $engine
rm page
rm -rf gtk-nodoka-engine-*
rm -rf nodoka-theme-gnome-*
rm -rf notification-daemon-engine-nodoka-*

Install Nodoka (Fedora theme) on Ubuntu

1. Install build-essential and libgtk2.0-dev packages:

sudo apt-get install build-essential libgtk2.0-dev

2. Download Nodoka GTK+ engine 0.6 from here.

3. Extract tarball package:

tar zxvf gtk-nodoka-engine-0.6.90.2.tar.gz

4. Now go to gtk-nodoka-engine-0.6 directory:

cd gtk-nodoka-engine-0.6.90.2

5. Configure:

./configure --prefix=/usr --enable-animation

6. Make:

make

7. Install:

sudo make install

Install theme

1. Get Nodoka theme 0.3.2 from here.
Then execute command in terminal:

tar zxvf nodoka-theme-gnome-0.3.90.tar.gz

2. Copy the Nodoka folder to themes folder:

cd nodoka-theme-gnome-0.3.90
sudo cp -r Nodoka/ /usr/share/themes/

Use theme
Click System -> Preferences -> Theme menu command. In Theme Preferences dialog, choose Nodoka item.

Screenshot:
Screenshot