NauLoc v0.1
![]() |
Description : Linux bash script for nautilus file manager to change location bar between text and buttons. It works with latest Ubuntu 10.04 LTS. |
| License : | Open Source (GPLv3) |
| Released : | June 28, 2010 |
| Filesize : | 661 bytes |
| Type : | Bash Script |
| OS : | Ubuntu Linux |
| MD5 : | 90687913c4753b8651117211869e4650 |
| Installation : | 1. Open terminal 2. Change directory to where you downloaded the file. 3. Type: chmod +x ./nauloc.sh (this sets permission) |
| Usage : | — Type: ./nauloc.sh -h (for help info) — Type: ./nauloc.sh txt (to set location bar to text) — Type: ./nauloc.sh btn (to set location bar to buttons) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash ## NauLoc v0.1 ## Coded by EMCGFX ## http://gravityfx.org/ ## Nautilus Location Bar (Text or Buttons) if [ "$1" = "txt" ]; then ## Turn Text Bar ON echo 'Nautilus Location Bar as Text' gconftool-2 --type=Boolean --set \ /apps/nautilus/preferences/always_use_location_entry true elif [ "$1" = "btn" ]; then echo 'Nautilus Location Bar as Buttons' gconftool-2 --type=Boolean --set \ /apps/nautilus/preferences/always_use_location_entry false elif [ "$1" = "" ] || [ "$1" = "-h" ]; then echo 'NauLoc v0.1 by EMCGFX' echo 'Usage: ./nauloc.sh [options]' echo ' txt: location bar as text' echo ' btn: location bar as buttons' fi |




