This file contains hidden or 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
index d0a5a45..8445ba3 100644 | |
--- a/cmd-break-pane.c | |
+++ b/cmd-break-pane.c | |
@@ -80,9 +80,9 @@ cmd_break_pane_exec(struct cmd *self, struct cmd_q *cmdq) | |
w = wp->window = window_create1(s->sx, s->sy); | |
TAILQ_INSERT_HEAD(&w->panes, wp, entry); | |
w->active = wp; | |
- name = default_window_name(w); | |
+ name = wp->base.title; | |
window_set_name(w, name); |
This file contains hidden or 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/python | |
from pushbullet import Pushbullet | |
import sys | |
if len(sys.argv) != 2: | |
print "Usage %s <message>"%sys.argv[0] | |
sys.exit(1) | |
api_key = '32_char_Key_from_pushbullet' |
This file contains hidden or 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
#tor-browser_en-US/Browser/TorBrowser/Data/Tor/torrc | |
StrictExitNodes 1 | |
ExitNodes {in} |
This file contains hidden or 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
#Courtesy | |
http://www.labnol.org/internet/direct-links-for-google-drive/28356/ | |
#get-shared-link | |
https://drive.google.com/file/d/FILE_ID/edit?usp=sharing | |
#convert-to-download-link | |
https://drive.google.com/uc?export=download&id=FILE_ID |
This file contains hidden or 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/python | |
from __future__ import print_function | |
import requests | |
import sys | |
import json | |
def get_response(idval, sessid): | |
headers = {'Session': sessid[0]} | |
req = 'http://challenge.shopcurbside.com/' |
This file contains hidden or 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
// Solarized for Mosh Chrome | |
// Mosh does not seem to save profiles, so this sets the default 'mosh' profile. | |
// To reset, evaluate term_.prefs_.resetAll() | |
// Run in the JavaScript console of mosh_browser.html, which can be opened | |
// as explained here: | |
// https://github.com/rpwoodbu/mosh-chrome/wiki/FAQ#how-can-i-change-the-way-the-terminal-looks-font-color-etc | |
var htermProfiles = { | |
// Solarized Dark |
This file contains hidden or 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
/* | |
* http://goo.gl/AKBve | |
*/ | |
// create a new profile at the bottom of the connect dialog, call it windows and then paste this: | |
mosh_client_.io.terminal_.prefs_.set('font-family', 'DejaVu Sans Mono for Powerline'); | |
mosh_client_.io.terminal_.prefs_.set('font-size', 12); | |
// this is the standard settings for a profile | |
term_.prefs_.set('font-family', 'monospace'); // standard | |
term_.prefs_.set('font-size', 15); // standard |
This file contains hidden or 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
diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme | |
index 518a14a3..75a90a09 100644 | |
--- a/themes/agnoster.zsh-theme | |
+++ b/themes/agnoster.zsh-theme | |
@@ -130,12 +130,12 @@ prompt_git() { | |
zstyle ':vcs_info:*' enable git | |
zstyle ':vcs_info:*' get-revision true | |
zstyle ':vcs_info:*' check-for-changes true | |
- zstyle ':vcs_info:*' stagedstr '✚' | |
- zstyle ':vcs_info:*' unstagedstr '●' |
This file contains hidden or 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
window.onbeforeunload = function(){ | |
return 'Are you sure you want to leave?'; | |
}; |
OlderNewer