diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ef16b..f46f841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.5] - 2021-11-03 +### Added +- Clipboard aliases to [Bash Config](home/.bashrc) + ## [1.2.4] - 2021-11-03 ### Fixed - Typo in [Changelog](CHANGELOG.md) diff --git a/VERSION b/VERSION index e8ea05d..c813fe1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.4 +1.2.5 diff --git a/home/.bashrc b/home/.bashrc index 98689d2..e8b45a4 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -5,7 +5,9 @@ alias termuxconfig='vim ${HOME}/.termux/termux.properties' alias vimconfig='vim ${HOME}/.vimrc' # Utils +alias copy='termux-clipboard-set' alias l='ls' alias lh='l -h' alias ll='lh -l' alias la='ll -a' +alias paste='termux-clipboard-paste'