Advertisement
Guest User

Untitled

a guest
May 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. gsettings set org.gnome.nautilus.preferences enable-interactive-search true.
  2.  
  3. gsettings list-recursively | grep search
  4.  
  5. gsettings list-recursively | grep interactive
  6.  
  7. # install some necessary tools
  8. sudo apt-get install git
  9.  
  10. # Create your work directory and go there
  11. mkdir bld-nautilus-typeahead ; cd bld-nautilus-typeahead
  12.  
  13. # Clone the repository holding the needed patch:
  14. git clone https://aur.archlinux.org/nautilus-typeahead.git
  15.  
  16. # Make sure the source repositories for the main archives are available:
  17. sudo nano /etc/apt/sources.list
  18.  
  19. # If the deb-src line for the main repository (usually around line 6)
  20. # is commented out (starts with a #)
  21. # uncomment it (remove the #) and save the file.
  22. sudo apt-get update
  23.  
  24. # Install the build dependencies
  25. sudo apt-get build-dep nautilus
  26.  
  27. # Retrieve the sources for Nautilus
  28. apt-get source nautilus
  29.  
  30. # Source should now be in the 'nautilus-3.26.0/' folder. Go there
  31. cd nautilus-3.26.0/
  32.  
  33. # and Apply the patch from arch-linux
  34. patch -p0 < ../nautilus-typeahead/nautilus-restore-typeahead.patch
  35.  
  36. # Build the package from source
  37. dpkg-buildpackage -rfakeroot -uc -b
  38.  
  39. # This will take a little time. If everything goes well, the related packages will end up in the parent directory. Go there
  40. cd ..
  41.  
  42. # and install the required packages
  43. sudo dpkg -i nautilus_3.26.0-0ubuntu1_amd64.deb nautilus-data_3.26.0-0ubuntu1_all.deb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement