From d75bdad638c66198ba84c812b1cf0f4546a8e0ab Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 4 Dec 2022 10:46:38 -0500 Subject: [PATCH] add limelight --- .config/limelight/limelightrc | 11 +++++++++++ .zshrc | 3 +++ 2 files changed, 14 insertions(+) create mode 100755 .config/limelight/limelightrc diff --git a/.config/limelight/limelightrc b/.config/limelight/limelightrc new file mode 100755 index 0000000..51fea29 --- /dev/null +++ b/.config/limelight/limelightrc @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +LIMELIGHT=~/repos/limelight/bin/limelight + +$LIMELIGHT -m config width 5 +#$LIMELIGHT -m config radius 0 +#$LIMELIGHT -m config placement interior +$LIMELIGHT -m config active_color 0xff30638e +$LIMELIGHT -m config normal_color 0x66003d5b + +echo "limelight configuration loaded.." diff --git a/.zshrc b/.zshrc index 3c9699c..608547b 100644 --- a/.zshrc +++ b/.zshrc @@ -135,6 +135,9 @@ alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' export PATH="/opt/homebrew/opt/cython/bin:$PATH" +export PATH="/opt/homebrew/opt/llvm/bin:$PATH" + +alias awb='~/repos/limelight/bin/limelight -c ~/.config/limelight/limelightrc' export STARSHIP_CONFIG=~/.config/starship/starship.toml eval "$(starship init zsh)"