diff options
-rw-r--r-- | alias | 4 | ||||
-rw-r--r-- | zsh/_cdg.zsh | 2 |
2 files changed, 2 insertions, 4 deletions
@@ -224,8 +224,8 @@ alias adb.view='adb shell am start -a android.intent.action.VIEW -d' | |||
224 | alias adb.default='adb shell dumpsys package domain-preferred-apps' | 224 | alias adb.default='adb shell dumpsys package domain-preferred-apps' |
225 | alias adb.list='adb shell dumpsys package d' | 225 | alias adb.list='adb shell dumpsys package d' |
226 | alias rmcache='rm -rf ~/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/*' | 226 | alias rmcache='rm -rf ~/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/*' |
227 | alias adb.screenshot='DIR=/sdcard/Pictures/Screenshots/; adb pull $DIR/`adb shell ls -t $DIR | head -1` ~/Desktop' | 227 | alias adb.screenshot='DIR=/sdcard/Pictures/Screenshots/; adb pull $DIR/`adb shell ls -t $DIR | head -1` .' |
228 | alias adb.camera='DIR=/sdcard/DCIM/Camera; adb pull $DIR/`adb shell ls -t $DIR | head -1` ~/Desktop' | 228 | alias adb.camera='DIR=/sdcard/DCIM/Camera; adb pull $DIR/`adb shell ls -t $DIR | head -1` .' |
229 | adb.push() { | 229 | adb.push() { |
230 | adb push $1 /sdcard/Download | 230 | adb push $1 /sdcard/Download |
231 | } | 231 | } |
diff --git a/zsh/_cdg.zsh b/zsh/_cdg.zsh index ac983bf..d265747 100644 --- a/zsh/_cdg.zsh +++ b/zsh/_cdg.zsh | |||
@@ -3,5 +3,3 @@ | |||
3 | function _cdg() { | 3 | function _cdg() { |
4 | compadd -S '' $(cd ~/git && ls -d ${words[2]}*/) | 4 | compadd -S '' $(cd ~/git && ls -d ${words[2]}*/) |
5 | } | 5 | } |
6 | |||
7 | _cdg | ||