Skip to main content
avl-scripts
  1. projects/

avl-scripts

Table of Contents
Release

In this repo, I keep all my custom scripts. They range from a conventional commit script to even a pomodoro timer.

Installing on Arch Linux
#

git clone https://codeberg.org/nietarne/scripts.git /tmp/scripts
cd /tmp/scripts
makepkg -si

Or, install it from the vanlooverendev repo with pacman -S avl-scripts.

Scripts
#

pom
#

###############################################
#
# Title:       pom
# Author:      Arne Van Looveren
# Description: Pomodoro timer cli
#
# Usage:       pom
#
###############################################
#
# Note:
# This script needs timer and gum to be installed.
# You should also need to be able to send notifications using notify-send
# S/O bashbunni: https://gist.github.com/bashbunni/f6b04fc4703903a71ce9f70c58345106
#
###############################################

tm
#

###############################################
#
# Title:       tm
# Author:      Arne Van Looveren
# Description: Tmux Manager
#
# Usage:       tm [session_name]
# Usage:       tm kill [session_name]
# Usage:       tm list
#
###############################################
#
# Note:
# This script needs tmux and fzf to be installed.
#
###############################################

commit
#

###############################################
#
# Title:       commit
# Author:      Arne Van Looveren
# Description: Conventional commit tool
#
# Usage:       commit
#
###############################################
#
# Note:
# This script needs git and gum to be installed.
#
###############################################

clone
#

###############################################
#
# Title:       clone
# Author:      Arne Van Looveren
# Description: Git repo clone tool
#
# Usage:       clone
#
###############################################
#
# Note:
# This script needs git and gum to be installed.
#
###############################################

loc
#

###############################################
#
# Title:       loc
# Author:      Arne Van Looveren
# Description: Lines of code counter
#
# Usage:       loc --help
# Usage:       loc -t <filetype>
# Usage:       loc -p <path> -t <filetype>
#
###############################################
#
# Note:
# This script needs gum to be installed.
#
###############################################

tmux-restore
#

###############################################
#
# Title:       tmux-restore
# Author:      Arne Van Looveren
# Description: Restore tmux for tmux resurrect
#
# Usage:       tmux-restore
#
###############################################