├── .gitignore ├── .gitmodules ├── .tmux-powerline ├── AUTHORS ├── LICENSE ├── README.md ├── config.sh ├── img │ ├── full.png │ ├── left-status.png │ ├── right-status.png │ ├── right-status_no_mail.png │ ├── right-status_no_mpd.png │ └── right-status_weather_battery.png ├── lib.sh ├── segments │ ├── Makefile │ ├── apple_mail_count.sh │ ├── battery.sh │ ├── battery_mac.sh │ ├── cpu.sh │ ├── date_day.sh │ ├── date_full.sh │ ├── hostname.sh │ ├── lan_ip.sh │ ├── load.sh │ ├── maildir_count.sh │ ├── np_audacious.sh │ ├── np_banshee.sh │ ├── np_itunes_mac.sh │ ├── np_mpd.c │ ├── np_mpd.sh │ ├── np_rhythmbox.sh │ ├── np_spotify_linux_native.sh │ ├── np_spotify_linux_wine.sh │ ├── np_spotify_mac.script │ ├── np_spotify_mac.sh │ ├── pwd.sh │ ├── time.sh │ ├── tmux_session_info.sh │ ├── uptime.sh │ ├── username.sh │ ├── vcs_branch.sh │ ├── wan_ip.sh │ ├── weather.sh │ ├── xkb_layout.c │ └── xkb_layout.sh ├── status-left.sh └── status-right.sh ├── .tmux.conf ├── LICENSE.md ├── Makefile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tmux-powerline/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/AUTHORS -------------------------------------------------------------------------------- /.tmux-powerline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/LICENSE -------------------------------------------------------------------------------- /.tmux-powerline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/README.md -------------------------------------------------------------------------------- /.tmux-powerline/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/config.sh -------------------------------------------------------------------------------- /.tmux-powerline/img/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/full.png -------------------------------------------------------------------------------- /.tmux-powerline/img/left-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/left-status.png -------------------------------------------------------------------------------- /.tmux-powerline/img/right-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/right-status.png -------------------------------------------------------------------------------- /.tmux-powerline/img/right-status_no_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/right-status_no_mail.png -------------------------------------------------------------------------------- /.tmux-powerline/img/right-status_no_mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/right-status_no_mpd.png -------------------------------------------------------------------------------- /.tmux-powerline/img/right-status_weather_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/img/right-status_weather_battery.png -------------------------------------------------------------------------------- /.tmux-powerline/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/lib.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/Makefile -------------------------------------------------------------------------------- /.tmux-powerline/segments/apple_mail_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/apple_mail_count.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/battery.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/battery_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/battery_mac.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/cpu.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/date_day.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/date_day.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/date_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/date_full.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/hostname.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/lan_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/lan_ip.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/load.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/maildir_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/maildir_count.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_audacious.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_audacious.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_banshee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_banshee.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_itunes_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_itunes_mac.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_mpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_mpd.c -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_mpd.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_rhythmbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_rhythmbox.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_spotify_linux_native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_spotify_linux_native.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_spotify_linux_wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_spotify_linux_wine.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_spotify_mac.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_spotify_mac.script -------------------------------------------------------------------------------- /.tmux-powerline/segments/np_spotify_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/np_spotify_mac.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/pwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/pwd.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/time.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | # Prints the current time. 3 | date +"%H:%M " 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /.tmux-powerline/segments/tmux_session_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/tmux_session_info.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/uptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/uptime.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/username.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | # Prints the hostname 3 | whoami 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /.tmux-powerline/segments/vcs_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/vcs_branch.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/wan_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/wan_ip.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/weather.sh -------------------------------------------------------------------------------- /.tmux-powerline/segments/xkb_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/xkb_layout.c -------------------------------------------------------------------------------- /.tmux-powerline/segments/xkb_layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/segments/xkb_layout.sh -------------------------------------------------------------------------------- /.tmux-powerline/status-left.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/status-left.sh -------------------------------------------------------------------------------- /.tmux-powerline/status-right.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux-powerline/status-right.sh -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/.tmux.conf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbnicolai/tmux/HEAD/README.md --------------------------------------------------------------------------------