2017/02/12
- 【MV】虹のコンキスタドール「戦場の聖バレンタイン」
- 【MV】虹のコンキスタドール「THE☆有頂天サマー!!」(虹コン)
- 【MV】虹のコンキスタドール「限りなく冒険に近いサマー」(虹コン)
- パスピエ - 永すぎた春, PASSEPIED - Nagasugita Haru
- パスピエ - ハイパーリアリスト , PASSEPIED - Hyper Realist
- チャイナタウン - パスピエ
--- git-prompt.sh.orig 2014-08-04 23:48:33.000000000 -1000 | |
+++ git-prompt.sh 2014-08-05 00:02:38.000000000 -1000 | |
@@ -439,7 +439,8 @@ | |
fi | |
local f="$w$i$s$u" | |
- local gitstring="$c${b##refs/heads/}${f:+$z$f}$r$p" | |
+ local branchname=${b##refs/heads/} | |
+ local gitstring="$c$branchname${f:+$z$f}$r$p" | |
@mixin stack-classes ($classes) { | |
$i: 10; | |
@each $class in $classes { | |
.#{$class} { | |
z-index: $i; | |
$i: $i + 10; | |
} | |
} | |
} |
#!/bin/bash | |
if [ "$1" == "" ]; then | |
echo Usage: $0 pngfile | |
exit 0; | |
fi | |
FILE=`basename $1 .png` | |
if [ ! -e $FILE.png ]; then |