From 124cf9a4a47dd349e90d9de5cd7eae33d12e77b1 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Tue, 22 Sep 2020 14:54:48 +0200 Subject: [PATCH] zsh: add adb_screenshot function --- .config/qBittorrent/qBittorrent-data.ini | 2 -- .gitignore | 1 + .zshrc | 6 ++++++ 3 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 .config/qBittorrent/qBittorrent-data.ini create mode 100644 .gitignore diff --git a/.config/qBittorrent/qBittorrent-data.ini b/.config/qBittorrent/qBittorrent-data.ini deleted file mode 100644 index f045968..0000000 --- a/.config/qBittorrent/qBittorrent-data.ini +++ /dev/null @@ -1,2 +0,0 @@ -[Stats] -AllStats="@Variant(\0\0\0\x1c\0\0\0\x2\0\0\0\x12\0\x41\0l\0l\0t\0i\0m\0\x65\0\x44\0L\0\0\0\x5\0\0\0\0\xeej\xe\xe9\0\0\0\x12\0\x41\0l\0l\0t\0i\0m\0\x65\0U\0L\0\0\0\x5\0\0\0\0,yR\x4)" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d42fff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.config/qBittorrent diff --git a/.zshrc b/.zshrc index 4d624ae..6c3c6bb 100644 --- a/.zshrc +++ b/.zshrc @@ -74,6 +74,12 @@ plugins=(git) source $ZSH/oh-my-zsh.sh +# Functions + +adb_screenshot() { + adb shell screencap -p > ~/Desktop/screenshot.png +} + # User configuration # export MANPATH="/usr/local/man:$MANPATH"