Skip to content

Commit 178400f

Browse files
committed
update
1 parent a0454fd commit 178400f

File tree

1 file changed

+116
-0
lines changed

1 file changed

+116
-0
lines changed

tmux-powerlinerc

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# Default configuration file for tmux-powerline.
2+
# Modeline {
3+
# vi: foldmarker={,} foldmethod=marker foldlevel=0 tabstop=4 filetype=sh
4+
# }
5+
6+
# General {
7+
# Show which segment fails and its exit code.
8+
export TMUX_POWERLINE_DEBUG_MODE_ENABLED="false"
9+
# Use patched font symbols.
10+
export TMUX_POWERLINE_PATCHED_FONT_IN_USE="false"
11+
# The theme to use.
12+
export TMUX_POWERLINE_THEME="default"
13+
# Overlay dirctory to look for themes. There you can put your own themes outside the repo. Fallback will still be the "themes" directory in the repo.
14+
export TMUX_POWERLINE_DIR_USER_THEMES=""
15+
# Overlay dirctory to look for segments. There you can put your own segments outside the repo. Fallback will still be the "segments" directory in the repo.
16+
export TMUX_POWERLINE_DIR_USER_SEGMENTS=""
17+
# }
18+
19+
# battery.sh {
20+
# How to display battery remaining. Can be {percentage, cute}.
21+
export TMUX_POWERLINE_SEG_BATTERY_TYPE="percentage"
22+
# How may hearts to show if cute indicators are used.
23+
export TMUX_POWERLINE_SEG_BATTERY_NUM_HEARTS="5"
24+
# }
25+
26+
# date.sh {
27+
# date(1) format for the date. If you don't, for some reason, like ISO 8601 format you might want to have "%D" or "%m/%d/%Y".
28+
export TMUX_POWERLINE_SEG_DATE_FORMAT="%F"
29+
# }
30+
31+
# hostname.sh {
32+
# Use short or long format for the hostname. Can be {"short, long"}.
33+
export TMUX_POWERLINE_SEG_HOSTNAME_FORMAT="long"
34+
# }
35+
36+
# mailcount.sh {
37+
# Mailbox type to use. Can be any of {apple_mail, gmail, maildir, mbox, mailcheck}
38+
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILBOX_TYPE=""
39+
40+
## Gmail
41+
# Enter your Gmail username here WITH OUT @gmail.com.( OR @domain)
42+
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_USERNAME=""
43+
# Google password. Recomenned to use application specific password (https://accounts.google.com/b/0/IssuedAuthSubTokens) Leave this empty to get password from OS X keychain.
44+
# For OSX users : MAKE SURE that you add a key to the keychain in the format as follows
45+
# Keychain Item name : http://<value-you-fill-in-server-variable-below>
46+
# Account name : <username-below>@<server-below>
47+
# Password : Your password ( Once again, try to use 2 step-verification and application-specific password)
48+
# See http://support.google.com/accounts/bin/answer.py?hl=en&answer=185833 for more info.
49+
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_PASSWORD=""
50+
# Domain name that will complete your email. For normal GMail users it probably is "gmail.com but can be "foo.tld" for Google Apps users.
51+
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_SERVER="gmail.com"
52+
# How often in minutes to check for new mails.
53+
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_INTERVAL="5"
54+
55+
## Maildir
56+
# Path to the maildir to check.
57+
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILDIR_INBOX="/home/proycon/.mail/inbox/new"
58+
59+
## mbox
60+
# Path to the mbox to check.
61+
export TMUX_POWERLINE_SEG_MAILCOUNT_MBOX_INBOX="/var/mail/proycon"
62+
63+
## mailcheck
64+
# Optional path to mailcheckrc
65+
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILCHECKRC="/home/proycon/.mailcheckrc"
66+
# }
67+
68+
# now_playing.sh {
69+
# Music player to use. Can be any of {audacious, banshee, cmus, itunes, lastfm, mocp, mpd, mpd_simple, pithos, rdio, rhythmbox, spotify, spotify_wine}.
70+
export TMUX_POWERLINE_SEG_NOW_PLAYING_MUSIC_PLAYER=""
71+
# Maximum output length.
72+
export TMUX_POWERLINE_SEG_NOW_PLAYING_MAX_LEN="40"
73+
# How to handle too long strings. Can be {trim, roll}.
74+
export TMUX_POWERLINE_SEG_NOW_PLAYING_TRIM_METHOD="trim"
75+
# Charcters per second to roll if rolling trim method is used.
76+
export TMUX_POWERLINE_SEG_NOW_PLAYING_ROLL_SPEED="2"
77+
78+
# Hostname for MPD server in the format "[password@]host"
79+
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_HOST="localhost"
80+
# Port the MPD server is running on.
81+
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_PORT="6600"
82+
# Song display format for mpd_simple. See mpc(1) for delimiters.
83+
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_SIMPLE_FORMAT="%artist% - %title%"
84+
85+
# Username for Last.fm if that music player is used.
86+
export TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_USERNAME=""
87+
# How often in seconds to update the data from last.fm.
88+
export TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_UPDATE_PERIOD="30"
89+
# }
90+
91+
# pwd.sh {
92+
# Maximum length of output.
93+
export TMUX_POWERLINE_SEG_PWD_MAX_LEN="40"
94+
# }
95+
96+
# time.sh {
97+
# date(1) format for the time. Americans might want to have "%I:%M %p".
98+
export TMUX_POWERLINE_SEG_TIME_FORMAT="%H:%M "
99+
# }
100+
101+
# weather.sh {
102+
# The data provider to use. Currently only "yahoo" is supported.
103+
export TMUX_POWERLINE_SEG_WEATHER_DATA_PROVIDER=""
104+
# What unit to use. Can be any of {c,f,k}.
105+
export TMUX_POWERLINE_SEG_WEATHER_UNIT="c"
106+
# How often to update the weather in seconds.
107+
export TMUX_POWERLINE_SEG_WEATHER_UPDATE_PERIOD="600"
108+
# Name of GNU grep binary if in PATH, or path to it.
109+
export TMUX_POWERLINE_SEG_WEATHER_GREP="grep"
110+
111+
# Your location. Find a code that works for you:
112+
# 1. Go to Yahoo weather http://weather.yahoo.com/
113+
# 2. Find the weather for you location
114+
# 3. Copy the last numbers in that URL. e.g. "http://weather.yahoo.com/united-states/california/newport-beach-12796587/" has the numbers "12796587"
115+
export TMUX_POWERLINE_SEG_WEATHER_LOCATION=""
116+
# }

0 commit comments

Comments
 (0)