Advertisement
htutt

font_install.sh

Nov 24th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.43 KB | None | 0 0
  1. #!/bin/sh
  2. # For Linux
  3. # Please see zawgyi-keyboard.googlecode.com for more information.
  4. # Place your font and mm file together with this script.
  5. # If you don't have font and mm file, please download them first.
  6.  
  7. FONT_DIR='/usr/share/fonts/mm3'
  8. XKB_DIR='/usr/share/X11/xkb/symbols'
  9.  
  10. # make a directory for font
  11. mkdir -p $FONT_DIR
  12.  
  13. # copy your font
  14. cp -f *.ttf $FONT_DIR
  15.  
  16. # copy xkb for myanmar
  17. cp -f mm $XKB_DIR
  18.  
  19. # EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement