This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
set-option -g display-time 4000 | |
#set -g default-terminal screen-256color | |
set -g default-terminal screen-256color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -e $HOME/.zsh/chpwd_profiles.zsh ]]; then | |
source $HOME/.zsh/chpwd_profiles.zsh | |
zstyle ":chpwd:profiles:/home/${USER}/projects(|/|/*)" profile projects | |
zstyle ":chpwd:profiles:(|/|/*)" profile default | |
# configuration for profile 'projects': | |
chpwd_profile_projects() { | |
[[ ${profile} == ${CHPWD_PROFILE} ]] && return 1 | |
print "chpwd(): Switching to profile: $profile" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use Chart::Pie; | |
use IO::File; | |
my $pie = Chart::Pie->new(640, 480); | |
my $score; |