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
# Load Weather | |
function weather() { | |
local cache_file='/tmp/weather.txt' | |
local cache=3600 | |
local update='false' | |
local modify='' | |
local now=$(date +%s) | |
local diff='' | |
if [[ ! -f "${cache_file}" ]]; then |
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
# Vm related tasks | |
################ | |
# Dependencies # | |
################ | |
function vagrant --description 'Extends vagrant command' | |
# Extends function waiting pull request https://github.com/bpinto/oh-my-fish/pull/279 | |
_extends $argv | |
end |
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
.vimiumHintMarker { | |
background-color: rgba(46, 92, 79, 0.648438); | |
padding: 3px; | |
border-radius: 3px; | |
text-align: center; | |
font-size: 8pt; | |
border: 1px solid #000; | |
box-shadow: 2px 2px 2px #333; | |
color: #D3FF5A; | |
opacity: 0.9; |
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
-- IMStatus | |
-- version 2.0, Lantrix (http://techdebug.com) | |
-- idea conceived from script by Jason Kenison "theWebGuy" Blog at: | |
-- http://www.jasonkenison.com/blog.html?id=22 | |
(* | |
Copyright (c) 2008, TechDebug.com | |
Permission to use, copy, modify, and/or distribute this software for any | |
purpose with or without fee is hereby granted, provided that the above |