2020-06-25 06:00:58 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#screenshots using scrot
|
|
|
|
scrot_dir=$HOME/screenshots/
|
2020-06-29 08:38:46 +08:00
|
|
|
date_format='%Y-%m-%d_%H-%M-%S'
|
2020-06-25 06:00:58 +08:00
|
|
|
s_scrot() {
|
2020-06-29 08:38:46 +08:00
|
|
|
name=$(date +${date_format}_sel.png)
|
2020-06-25 06:00:58 +08:00
|
|
|
path="${scrot_dir}${name}"
|
|
|
|
scrot -s $path
|
|
|
|
}
|
|
|
|
|
|
|
|
f_scrot() {
|
2020-06-29 08:38:46 +08:00
|
|
|
name=$(date +${date_format}_full.png)
|
2020-06-25 06:00:58 +08:00
|
|
|
path="${scrot_dir}${name}"
|
|
|
|
scrot $path
|
|
|
|
}
|
2020-06-29 08:38:46 +08:00
|
|
|
|
|
|
|
#cd into config dir
|
|
|
|
cfdir()
|
|
|
|
{
|
|
|
|
cd $HOME/.config/$1
|
|
|
|
}
|