diff --git a/_keysnail.js b/_keysnail.js index 51d25e4..d32b972 100644 --- a/_keysnail.js +++ b/_keysnail.js @@ -176,6 +176,36 @@ plugins.options["twitter_client.use_jmp"] = true; //////////////////////////////////////////// // my ext +(function(){ + function getOrganizer(){ + // [How to call for Firefox bookmark dialog? - Stack Overflow] + // (http://stackoverflow.com/questions/9158187/how-to-call-for-firefox-bookmark-dialog) + Components.utils.import("resource://gre/modules/Services.jsm"); + + var organizer = Services.wm.getMostRecentWindow("Places:Organizer"); + if (!organizer) { + // No currently open places window, so open one with the specified mode. + openDialog("chrome://browser/content/places/places.xul", + "", "chrome,toolbar=yes,dialog=no,resizable", "AllBookmarks"); + return null; + } else { + return organizer; + } + } + ext.add("export-bookmarks", function(ev, arg){ + var organizer = getOrganizer(); + if (organizer) { + organizer.PlacesOrganizer.exportBookmarks(); + } + }, "export bookmarks"); + ext.add("import-bookmarks", function(ev, arg){ + var organizer = getOrganizer(); + if (organizer) { + organizer.PlacesOrganizer.importBookmarks(); + } + }, "import bookmarks"); +})(); + ext.add("my-index-html", function(ev, arg){ homepath = util.getEnv("HOME"); file = ".index.html"; diff --git a/setup.sh b/setup.sh index 629bf58..4fe3516 100755 --- a/setup.sh +++ b/setup.sh @@ -56,7 +56,7 @@ git_config(){ git config --global status.relativePaths false git config --global status.showUntrackedFiles normal git config --global log.date iso - git config --global alias.graph "log --graph --date-order -C -M --pretty=tformat:\"<%C(green)%h%C(reset)> %C(white)%ad%C(reset) [%C(red)%an%C(reset)] %C(yellow)%d%C(reset) %C(white bold)%s%C(reset)\" --all --date=iso -n 499" + git config --global alias.graph "log --graph --date-order -C -M --pretty=tformat:\"%C(green)%h%C(reset) %C(white)%ad%C(reset) %C(red)%an%C(reset)%C(yellow)%d%C(reset) %C(white bold)%s%C(reset)\" --all --date=iso -n 499" git config --global alias.st "status -s -b" git config --global alias.b "branch" git config --global alias.sb "show-branch" diff --git a/tmux.conf.pl b/tmux.conf.pl index 5770338..ccdff19 100755 --- a/tmux.conf.pl +++ b/tmux.conf.pl @@ -42,6 +42,8 @@ sub set_key { } sub set_prefs { + set("base-index", "1"); + set("pane-base-index", "1"); setw("mode-keys", "vi"); set("default-command", "/bin/bash"); set("default-path", $ENV{"HOME"}); @@ -49,16 +51,25 @@ sub set_prefs { set("display-panes-time", "5000"); } +sub get_hostname { + my $hostname = $ENV{"HOSTNAME"}; + if (! $hostname) { + $hostname = `hostname`; + $hostname =~ s/\n//; + } + return $hostname; +} + sub set_status_line { my $user = $ENV{"USER"}; - my $hostname = $ENV{"HOSTNAME"}; + my $hostname = get_hostname(); my $tmux_v = `tmux -V`; $tmux_v =~ s/\n//; set("status-right", "${user}\@${hostname} | ${tmux_v} "); } sub set_colors { - my $hostname = $ENV{"HOSTNAME"}; + my $hostname = get_hostname(); my $color = $color_prefs{$hostname}; if (! $color) { $color = $color_def;