From 7f00713034bfe03644cf7227ae42029f40084ba6 Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Wed, 3 Nov 2021 02:43:14 +0000 Subject: [PATCH] Add clipboard aliases to Bash Config Signed-off-by: PandaCoderPL --- CHANGELOG.md | 4 ++++ VERSION | 2 +- home/.bashrc | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) 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'