Changes between Version 16 and Version 17 of Installing/MacOSX


Ignore:
Timestamp:
10/09/2011 07:23:32 PM (13 years ago)
Author:
carbncl
Comment:

Added optional steps + some wording

Legend:

Unmodified
Added
Removed
Modified
  • Installing/MacOSX

    v16 v17  
    33This works on OSX Lion 10.7 with Deluge 1.3.3 and also works on previous versions (Snow Leopard 10.6.x / Deluge 1.3.x) 
    44 
    5 These instructions assume a clean install of OSX (no XQuartz, Darwine, Winebottler, or !MacPorts / Fink installed before starting at step 1). 
     5These instructions assume a clean install of OSX (no XQuartz, Darwine, Winebottler, or !MacPorts / Fink installed). 
    66 
    77This methodology is time consuming, but is less error-prone for the uninitiated. 
    88 
    9 ''(Go watch a movie. It's gonna take a while for the downloading and compiling... might be hours of compilation and some gigabytes generated)'' 
     9''(Go watch a movie after launching port command, It's gonna take a while for the downloading and compiling... might be few hours and some gigabytes generated)'' 
    1010 
    1111 
     
    5656}}} 
    5757 
     58== Optional steps == 
     59 
     60=== GTK Engines === 
     61To get a better looking interface, you can install gtk-engines2 (or others [http://www.macports.org/ports.php?by=name&substr=engine GTK engines]) : 
     62{{{ 
     63#!sh 
     64sudo port install gtk-engines2 
     65}}} 
     66 
     67Then set you preferred engine (clearlooks in this case, which is nice) 
     68{{{ 
     69#!sh 
     70echo 'gtk-theme-name = "Clearlooks"' | sudo tee /opt/local/etc/gtk-2.0/gtkrc 
     71}}} 
     72 
     73=== Language === 
     74If you prefer english version (or any other language) you can launch deluge using the following: 
     75{{{ 
     76#!sh 
     77export LANG=en_US && deluge-gtk-2.6 & 
     78}}} 
     79 
     80Or alternatively, you can use an alias (in your bash profile, zshrc...) 
     81{{{ 
     82#!sh 
     83alias deluge='export LANG=en_US && deluge-gtk-2.6 &' 
     84}}} 
     85 
    5886== More == 
    59 More details / help available on forums! in [http://forum.deluge-torrent.org/viewforum.php?f=13 OSX Section] and also in [http://forum.deluge-torrent.org/viewtopic.php?f=13&t=34649 this thread] which initiated that wiki entry. 
     87More details / help available on forums! in [http://forum.deluge-torrent.org/viewforum.php?f=13 OSX Section] and also in [http://forum.deluge-torrent.org/viewtopic.php?f=13&t=34649 this thread] which initiated that wiki page.