config.sh 352 B

1234567891011121314151617
  1. #!/bin/sh
  2. # Cofigurations for tmux-powerline.
  3. if [ -z "$PLATFORM" ]; then
  4. UNAME=$(uname)
  5. if [ $UNAME == 'Linux' ]; then
  6. export PLATFORM="linux"
  7. fi
  8. if [ $UNAME == 'Darwin' ]; then
  9. export PLATFORM="mac"
  10. fi
  11. fi
  12. if [ -z "$USE_PATCHED_FONT" ]; then
  13. # Useage of patched font for symbols. true or false.
  14. export USE_PATCHED_FONT="true"
  15. fi