Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. cd /path/where/you/want/the/repository
  2.  
  3. # clone the repository
  4. git clone https://www.github.com/Airblader/i3 i3-gaps
  5. cd i3-gaps
  6.  
  7. # compile & install
  8. autoreconf --force --install
  9. rm -rf build/
  10. mkdir -p build && cd build/
  11.  
  12. # Disabling sanitizers is important for release versions!
  13. # The prefix and sysconfdir are, obviously, dependent on the distribution.
  14. ../configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
  15. make
  16. sudo make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement