mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 09:33:19 -09:00
add scripts
This commit is contained in:
parent
c077dcbeb8
commit
3bb7e9097b
@ -1,7 +0,0 @@
|
||||
# ~/.bash_logout: executed by bash(1) when login shell exits.
|
||||
|
||||
# when leaving the console clear the screen to increase privacy
|
||||
|
||||
if [ "$SHLVL" = 1 ]; then
|
||||
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
||||
fi
|
127
.bashrc
127
.bashrc
@ -1,127 +0,0 @@
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||
# for examples
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# don't put duplicate lines or lines starting with space in the history.
|
||||
# See bash(1) for more options
|
||||
HISTCONTROL=ignoreboth
|
||||
|
||||
# append to the history file, don't overwrite it
|
||||
shopt -s histappend
|
||||
|
||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||
HISTSIZE=1000
|
||||
HISTFILESIZE=2000
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
# update the values of LINES and COLUMNS.
|
||||
shopt -s checkwinsize
|
||||
|
||||
# If set, the pattern "**" used in a pathname expansion context will
|
||||
# match all files and zero or more directories and subdirectories.
|
||||
#shopt -s globstar
|
||||
|
||||
# make less more friendly for non-text input files, see lesspipe(1)
|
||||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||
|
||||
# set variable identifying the chroot you work in (used in the prompt below)
|
||||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
||||
debian_chroot=$(cat /etc/debian_chroot)
|
||||
fi
|
||||
|
||||
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||
case "$TERM" in
|
||||
xterm-color|*-256color) color_prompt=yes;;
|
||||
esac
|
||||
|
||||
# uncomment for a colored prompt, if the terminal has the capability; turned
|
||||
# off by default to not distract the user: the focus in a terminal window
|
||||
# should be on the output of commands, not on the prompt
|
||||
#force_color_prompt=yes
|
||||
|
||||
if [ -n "$force_color_prompt" ]; then
|
||||
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
||||
# We have color support; assume it's compliant with Ecma-48
|
||||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||
# a case would tend to support setf rather than setaf.)
|
||||
color_prompt=yes
|
||||
else
|
||||
color_prompt=
|
||||
fi
|
||||
fi
|
||||
|
||||
parse_git_branch() {
|
||||
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1) /' -e 's/ () //'
|
||||
}
|
||||
if [ "$color_prompt" = yes ]; then
|
||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[96m\]$(parse_git_branch)\[\033[0m\]\$ '
|
||||
else
|
||||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
|
||||
fi
|
||||
unset color_prompt force_color_prompt
|
||||
|
||||
# If this is an xterm set the title to user@host:dir
|
||||
case "$TERM" in
|
||||
xterm*|rxvt*)
|
||||
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias ls='ls --color=auto'
|
||||
#alias dir='dir --color=auto'
|
||||
#alias vdir='vdir --color=auto'
|
||||
|
||||
alias grep='grep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
fi
|
||||
|
||||
# colored GCC warnings and errors
|
||||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
# sleep 10; alert
|
||||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||
|
||||
# Alias definitions.
|
||||
# You may want to put all your additions into a separate file like
|
||||
# ~/.bash_aliases, instead of adding them here directly.
|
||||
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||
|
||||
if [ -f ~/.bash_aliases ]; then
|
||||
. ~/.bash_aliases
|
||||
fi
|
||||
|
||||
# enable programmable completion features (you don't need to enable
|
||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||
# sources /etc/bash.bashrc).
|
||||
if ! shopt -oq posix; then
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
elif [ -f /etc/bash_completion ]; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
fi
|
||||
|
||||
# run neofetch
|
||||
# neofetch
|
||||
|
||||
# setup node version manager
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
||||
# add go installed apps to path
|
||||
PATH=$PATH:~/go/bin
|
||||
|
1
.config/alacritty/.gitignore
vendored
1
.config/alacritty/.gitignore
vendored
@ -1 +0,0 @@
|
||||
!alacritty.yml
|
@ -1,24 +1,13 @@
|
||||
font:
|
||||
normal:
|
||||
family: Inconsolata
|
||||
|
||||
size: 14
|
||||
font:
|
||||
size: 12
|
||||
#normal:
|
||||
#family: FiraCode Nerd Font Mono Regular
|
||||
|
||||
window:
|
||||
padding:
|
||||
x: 15
|
||||
y: 15
|
||||
decorations: none
|
||||
startup_mode: Windowed # Fullscreen
|
||||
opacity: 0.66
|
||||
|
||||
key_bindings:
|
||||
- { key: F10, action: ToggleFullscreen }
|
||||
- { key: Home, chars: "\x1bOH", mode: AppCursor }
|
||||
- { key: Home, chars: "\x1b[H", mode: ~AppCursor }
|
||||
- { key: End, chars: "\x1bOF", mode: AppCursor }
|
||||
- { key: End, chars: "\x1b[F", mode: ~AppCursor }
|
||||
|
||||
env:
|
||||
TERM: xterm-256color
|
||||
|
||||
opacity: 0.7
|
||||
#opacity: .90
|
||||
|
@ -1,3 +0,0 @@
|
||||
let g:netrw_dirhistmax =10
|
||||
let g:netrw_dirhistcnt =1
|
||||
let g:netrw_dirhist_1='/home/ajet/.vim'
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"svelte.enable-ts-plugin": true
|
||||
"svelte.ask-to-enable-ts-plugin": false
|
||||
}
|
@ -1,2 +1,2 @@
|
||||
source ~/.vim/autoload/plug.vim
|
||||
source ~/.vim/vimrc
|
||||
|
||||
|
@ -1,5 +0,0 @@
|
||||
[user]
|
||||
name = Adam Jeniski
|
||||
email = ajeniski4@gmail.com
|
||||
[init]
|
||||
defaultBranch = main
|
28
.profile
28
.profile
@ -1,28 +0,0 @@
|
||||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/.local/bin" ] ; then
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
fi
|
||||
. "$HOME/.cargo/env"
|
7
.scripts/setup/wallpaper
Executable file
7
.scripts/setup/wallpaper
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
cp $1 ~/Pictures/Wallpapers/bg.jpg
|
||||
wal -c -i ~/Pictures/Wallpapers/bg.jpg
|
||||
gsettings set org.gnome.desktop.background picture-uri 'file:///home/ajet/Pictures/Wallpapers/bg.jpg'
|
||||
|
||||
|
37
.scripts/statusbar/sb-battery
Normal file
37
.scripts/statusbar/sb-battery
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Prints all batteries, their percentage remaining and an emoji corresponding
|
||||
# to charge status (🔌 for plugged up, 🔋 for discharging on battery, etc.).
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
3) notify-send "🔋 Battery module" "🔋: discharging
|
||||
🛑: not charging
|
||||
♻: stagnant charge
|
||||
🔌: charging
|
||||
⚡: charged
|
||||
❗: battery very low!
|
||||
- Scroll to change adjust xbacklight." ;;
|
||||
4) xbacklight -inc 10 ;;
|
||||
5) xbacklight -dec 10 ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
# Loop through all attached batteries and format the info
|
||||
for battery in /sys/class/power_supply/BAT?*; do
|
||||
# If non-first battery, print a space separator.
|
||||
[ -n "${capacity+x}" ] && printf " "
|
||||
# Sets up the status and capacity
|
||||
case "$(cat "$battery/status" 2>&1)" in
|
||||
"Full") status="⚡" ;;
|
||||
"Discharging") status="🔋" ;;
|
||||
"Charging") status="🔌" ;;
|
||||
"Not charging") status="🛑" ;;
|
||||
"Unknown") status="♻️" ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
capacity="$(cat "$battery/capacity" 2>&1)"
|
||||
# Will make a warn variable if discharging and low
|
||||
[ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && warn="❗"
|
||||
# Prints the info
|
||||
printf "%s%s%d%%" "$status" "$warn" "$capacity"; unset warn
|
||||
done && printf "\\n"
|
29
.scripts/statusbar/sb-clock
Normal file
29
.scripts/statusbar/sb-clock
Normal file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
clock=$(date '+%I')
|
||||
|
||||
case "$clock" in
|
||||
"00") icon="🕛" ;;
|
||||
"01") icon="🕐" ;;
|
||||
"02") icon="🕑" ;;
|
||||
"03") icon="🕒" ;;
|
||||
"04") icon="🕓" ;;
|
||||
"05") icon="🕔" ;;
|
||||
"06") icon="🕕" ;;
|
||||
"07") icon="🕖" ;;
|
||||
"08") icon="🕗" ;;
|
||||
"09") icon="🕘" ;;
|
||||
"10") icon="🕙" ;;
|
||||
"11") icon="🕚" ;;
|
||||
"12") icon="🕛" ;;
|
||||
esac
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) notify-send "This Month" "$(cal --color=always | sed "s/..7m/<b><span color=\"red\">/;s/..27m/<\/span><\/b>/")" && notify-send "Appointments" "$(calcurse -d3)" ;;
|
||||
2) setsid -f "$TERMINAL" -e calcurse ;;
|
||||
3) notify-send "📅 Time/date module" "\- Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\`
|
||||
- Middle click opens calcurse if installed" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
date "+%Y %b %d (%a) $icon%I:%M%p"
|
12
.scripts/statusbar/sb-cpu
Normal file
12
.scripts/statusbar/sb-cpu
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd:15,%cpu --sort=-%cpu | head)\\n(100% per core)" ;;
|
||||
2) setsid -f "$TERMINAL" -e htop ;;
|
||||
3) notify-send "🖥 CPU module " "\- Shows CPU temperature.
|
||||
- Click to show intensive processes.
|
||||
- Middle click to open htop." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
sensors | awk '/Core 0/ {print "🌡" $3}'
|
44
.scripts/statusbar/sb-cpubars
Normal file
44
.scripts/statusbar/sb-cpubars
Normal file
@ -0,0 +1,44 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Module showing CPU load as a changing bars.
|
||||
# Just like in polybar.
|
||||
# Each bar represents amount of load on one core since
|
||||
# last run.
|
||||
|
||||
# Cache in tmpfs to improve speed and reduce SSD load
|
||||
cache=/tmp/cpubarscache
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
2) setsid -f "$TERMINAL" -e htop ;;
|
||||
3) notify-send "🪨 CPU load module" "Each bar represents
|
||||
one CPU core";;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
# id total idle
|
||||
stats=$(awk '/cpu[0-9]+/ {printf "%d %d %d\n", substr($1,4), ($2 + $3 + $4 + $5), $5 }' /proc/stat)
|
||||
[ ! -f $cache ] && echo "$stats" > "$cache"
|
||||
old=$(cat "$cache")
|
||||
printf "🪨"
|
||||
echo "$stats" | while read -r row; do
|
||||
id=${row%% *}
|
||||
rest=${row#* }
|
||||
total=${rest%% *}
|
||||
idle=${rest##* }
|
||||
|
||||
case "$(echo "$old" | awk '{if ($1 == id)
|
||||
printf "%d\n", (1 - (idle - $3) / (total - $2))*100 /12.5}' \
|
||||
id="$id" total="$total" idle="$idle")" in
|
||||
|
||||
"0") printf "▁";;
|
||||
"1") printf "▂";;
|
||||
"2") printf "▃";;
|
||||
"3") printf "▄";;
|
||||
"4") printf "▅";;
|
||||
"5") printf "▆";;
|
||||
"6") printf "▇";;
|
||||
"7") printf "█";;
|
||||
"8") printf "█";;
|
||||
esac
|
||||
done; printf "\\n"
|
||||
echo "$stats" > "$cache"
|
23
.scripts/statusbar/sb-disk
Normal file
23
.scripts/statusbar/sb-disk
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Status bar module for disk space
|
||||
# $1 should be drive mountpoint, otherwise assumed /.
|
||||
|
||||
location=${1:-/}
|
||||
|
||||
[ -d "$location" ] || exit
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) notify-send "💽 Disk space" "$(df -h --output=target,used,size)" ;;
|
||||
3) notify-send "💽 Disk module" "\- Shows used hard drive space.
|
||||
- Click to show all disk info." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
case "$location" in
|
||||
"/home"* ) icon="🏠" ;;
|
||||
"/mnt"* ) icon="💾" ;;
|
||||
*) icon="🖥";;
|
||||
esac
|
||||
|
||||
printf "%s: %s\n" "$icon" "$(df -h "$location" | awk ' /[0-9]/ {print $3 "/" $2}')"
|
260
.scripts/statusbar/sb-doppler
Normal file
260
.scripts/statusbar/sb-doppler
Normal file
@ -0,0 +1,260 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Show a Doppler RADAR of a user's preferred location.
|
||||
|
||||
secs=600 # Download a new doppler radar if one hasn't been downloaded in $secs seconds.
|
||||
radarloc="${XDG_CACHE_HOME:-$HOME/.cache}/radar"
|
||||
doppler="${XDG_CACHE_HOME:-$HOME/.cache}/doppler.gif"
|
||||
|
||||
pickloc() { chosen="$(echo "US: Northeast
|
||||
US: Southeast
|
||||
US: PacNorthWest
|
||||
US: PacSouthWest
|
||||
US: UpperMissVly
|
||||
US: SouthMissVly
|
||||
US: SouthPlains
|
||||
US: NorthRockies
|
||||
US: SouthRockies
|
||||
US: Alaska
|
||||
US: Carib
|
||||
US: Hawaii
|
||||
US: CentGrLakes
|
||||
US: Conus-Large
|
||||
US: KABR: Aberdeen, SD
|
||||
US: KBIS: Bismarck, ND
|
||||
US: KFTG: Denver/Boulder, CO
|
||||
US: KDMX: Des Moines, IA
|
||||
US: KDTX: Detroit, MI
|
||||
US: KDDC: Dodge City, KS
|
||||
US: KDLH: Duluth, MN
|
||||
US: KCYS: Cheyenne, WY
|
||||
US: KLOT: Chicago, IL
|
||||
US: KGLD: Goodland, KS
|
||||
US: KUEX: Hastings, NE
|
||||
US: KGJX: Grand Junction, CO
|
||||
US: KGRR: Grand Rapids, MI
|
||||
US: KMVX: Fargo/Grand Forks, ND
|
||||
US: KGRB: Green Bay, WI
|
||||
US: KIND: Indianapolis, IN
|
||||
US: KJKL: Jackson, KY
|
||||
US: KARX: La Crosse, WI
|
||||
US: KILX: Lincoln/Central Illinois, IL
|
||||
US: KLVX: Louisville, KY
|
||||
US: KMQT: Marquette
|
||||
US: KMKX: Milwaukee, WI
|
||||
US: KMPX: Minneapolis, MN
|
||||
US: KAPX: Gaylord/Alpena, MI
|
||||
US: KLNX: North Platte, NE
|
||||
US: KIWX: N. Webster/Northern, IN
|
||||
US: KOAX: Omaha, NE
|
||||
US: KPAH: Paducah, KY
|
||||
US: KEAX: Pleasant Hill, MO
|
||||
US: KPUX: Pueblo, CO
|
||||
US: KDVN: Quad Cities, IA
|
||||
US: KUDX: Rapid City, SD
|
||||
US: KRIW: Riverton, WY
|
||||
US: KSGF: Springfield, MO
|
||||
US: KLSX: St. LOUIS, MO
|
||||
US: KFSD: Sioux Falls, IA
|
||||
US: KTWX: Topeka, KS
|
||||
US: KICT: Wichita, KS
|
||||
US: KVWX: Paducah, KY
|
||||
US: ICAO: Responsible Wfo
|
||||
US: KLTX: WILMINGTON, NC
|
||||
US: KCCX: State College/Central, PA
|
||||
US: KLWX: Sterling, VA
|
||||
US: KFCX: Blacksburg/Roanoke, VA
|
||||
US: KRAX: Raleigh/Durham, NC
|
||||
US: KGYX: Portland, ME
|
||||
US: KDIX: Mt Holly/Philadelphia, PA
|
||||
US: KPBZ: Pittsburgh, PA
|
||||
US: KAKQ: Wakefield, VA
|
||||
US: KMHX: Morehead City, NC
|
||||
US: KGSP: Greer/Greenville/Sprtbg, SC
|
||||
US: KILN: Wilmington/Cincinnati, OH
|
||||
US: KCLE: Cleveland, OH
|
||||
US: KCAE: Columbia, SC
|
||||
US: KBGM: Binghamton, NY
|
||||
US: KENX: Albany, NY
|
||||
US: KBUF: Buffalo, NY
|
||||
US: KCXX: Burlington, VT
|
||||
US: KCBW: Caribou, ME
|
||||
US: KBOX: Boston /Taunton, MA
|
||||
US: KOKX: New York City, NY
|
||||
US: KCLX: Charleston, SC
|
||||
US: KRLX: Charleston, WV
|
||||
US: ICAO: Responsible WFO
|
||||
US: KBRO: Brownsville, TX
|
||||
US: KABX: Albuquerque, NM
|
||||
US: KAMA: Amarillo, TX
|
||||
US: KFFC: Peachtree City/Atlanta, GA
|
||||
US: KEWX: Austin/Sanantonio, TX
|
||||
US: KBMX: Birmingham, AL
|
||||
US: KCRP: Corpus Christi, TX
|
||||
US: KFWS: Dallas / Ft. Worth, TX
|
||||
US: KEPZ: El Paso, TX
|
||||
US: KHGX: Houston/ Galveston, TX
|
||||
US: KJAX: Jacksonville, FL
|
||||
US: KBYX: Key West, FL
|
||||
US: KMRX: Morristown/knoxville, TN
|
||||
US: KLBB: Lubbock, TX
|
||||
US: KLZK: Little Rock, AR
|
||||
US: KLCH: Lake Charles, LA
|
||||
US: KOHX: Nashville, TN
|
||||
US: KMLB: Melbourne, FL
|
||||
US: KNQA: Memphis, TN
|
||||
US: KAMX: Miami, FL
|
||||
US: KMAF: Midland/odessa, TX
|
||||
US: KTLX: Norman, OK
|
||||
US: KHTX: Huntsville, AL
|
||||
US: KMOB: Mobile, AL
|
||||
US: KTLH: Tallahassee, FL
|
||||
US: KTBW: Tampa Bay Area, FL
|
||||
US: KSJT: San Angelo, TX
|
||||
US: KINX: Tulsa, OK
|
||||
US: KSRX: Tulsa, OK
|
||||
US: KLIX: New Orleans/slidell, LA
|
||||
US: KDGX: Jackson, MS
|
||||
US: KSHV: Shreveport, LA
|
||||
US: ICAO: Responsible WFO
|
||||
US: KLGX: Seattle / Tacoma, WA
|
||||
US: KOTX: Spokane, WA
|
||||
US: KEMX: Tucson, AZ
|
||||
US: KYUX: Phoenix, AZ
|
||||
US: KNKX: San Diego, CA
|
||||
US: KMUX: Monterey/san Francisco, CA
|
||||
US: KHNX: San Joaquin/hanford, CA
|
||||
US: KSOX: San Diego, CA
|
||||
US: KATX: Seattle / Tacoma, WA
|
||||
US: KIWA: Phoenix, AZ
|
||||
US: KRTX: Portland, OR
|
||||
US: KSFX: Pocatello, ID
|
||||
US: KRGX: Reno, NV
|
||||
US: KDAX: Sacramento, CA
|
||||
US: KMTX: Salt Lake City, UT
|
||||
US: KPDT: Pendleton, OR
|
||||
US: KMSX: Missoula, MT
|
||||
US: KESX: Las Vegas, NV
|
||||
US: KVTX: Los Angeles, CA
|
||||
US: KMAX: Medford, OR
|
||||
US: KFSX: Flagstaff, AZ
|
||||
US: KGGW: Glasgow, MT
|
||||
US: KLRX: Elko, NV
|
||||
US: KBHX: Eureka, CA
|
||||
US: KTFX: Great Falls, MT
|
||||
US: KCBX: Boise, ID
|
||||
US: KBLX: Billings, MT
|
||||
US: KICX: Salt Lake City, UT
|
||||
US: ICAO: Responsible Wfo W/ MSCF
|
||||
US: PABC: Anchorage, AK
|
||||
US: PAPD: Fairbanks, AK
|
||||
US: PHKM: Honolulu, HI
|
||||
US: PAHG: Anchorage, AK
|
||||
US: PAKC: Anchorage, AK
|
||||
US: PAIH: Anchorage, AK
|
||||
US: PHMO: Honolulu, HI
|
||||
US: PAEC: Fairbanks, AK
|
||||
US: TJUA: San Juan, PR
|
||||
US: PACG: Juneau, AK
|
||||
US: PHKI: Honolulu, HI
|
||||
US: PHWA: Honolulu, HI
|
||||
US: ICAO: Responsible Wfo W/ MSCF
|
||||
US: KFDR: Norman, OK
|
||||
US: PGUA: Guam
|
||||
US: KBBX: Sacramento, CA
|
||||
US: KFDX: Albuquerque, NM
|
||||
US: KGWX: Jackson, MS
|
||||
US: KDOX: Wakefield, VA
|
||||
US: KDYX: San Angelo, TX
|
||||
US: KEYX: Las Vegas, NV
|
||||
US: KEVX: Mobile, AL
|
||||
US: KHPX: Paducah, KY
|
||||
US: KTYX: Burlington, VT
|
||||
US: KGRK: Dallas / Ft. Worth, TX
|
||||
US: KPOE: Lake Charles, LA
|
||||
US: KEOX: Tallahassee, FL
|
||||
US: KHDX: El Paso, TX
|
||||
US: KDFX: San Antonio, TX
|
||||
US: KMXX: Birmingham, AL
|
||||
US: KMBX: Bismarck, ND
|
||||
US: KVAX: Jacksonville, FL
|
||||
US: KJGX: Peachtree City/atlanta, GA
|
||||
US: KVNX: Norman, OK
|
||||
US: KVBX: Vandenberg Afb: Orcutt, CA
|
||||
EU: Europe
|
||||
EU: GB: Great Brittain
|
||||
EU: SCAN: Scandinavia
|
||||
EU: ALPS: The Alps
|
||||
EU: NL: The Netherlands
|
||||
EU: DE: Germany
|
||||
EU: SP: Spain
|
||||
EU: FR: France
|
||||
EU: IT: Italy
|
||||
EU: PL: Poland
|
||||
EU: GR: Greece
|
||||
EU: TU: Turkey
|
||||
EU: RU: Russia
|
||||
EU: BA: Bahrain
|
||||
EU: BC: Botswana
|
||||
EU: SE: Republic of Seychelles
|
||||
EU: HU: Hungary
|
||||
EU: UK: Ukraine
|
||||
AF: AF: Africa
|
||||
AF: WA: West Africa
|
||||
AF: ZA: South Africa
|
||||
AF: DZ: Algeria
|
||||
AF: CE: Canary Islands
|
||||
AF: NG: Nigeria
|
||||
AF: TD: Chad
|
||||
AF: CG: Democratic Republic of Congo
|
||||
AF: EG: Egypt
|
||||
AF: ET: Ethiopia
|
||||
AF: CM: Cameroon
|
||||
AF: IS: Israel
|
||||
AF: LY: Libya
|
||||
AF: MG: Madagascar
|
||||
AF: MO: Morocco
|
||||
AF: BW: Namibia
|
||||
AF: SA: Saudi Arabia
|
||||
AF: SO: Somalia
|
||||
AF: SD: Sudan
|
||||
AF: TZ: Tanzania
|
||||
AF: TN: Tunisia
|
||||
AF: ZM: Zambia
|
||||
AF: KE: Kenya
|
||||
AF: AO: Angola" | dmenu -r -i -l 50 -p "Select a radar to use as default:" | tr "[:lower:]" "[:upper:]")"
|
||||
|
||||
# Set continent code and radar code.
|
||||
continentcode=$(echo "$chosen" | sed "s/:.*//")
|
||||
radarcode=$(echo "$chosen" | sed "s/..: // ; s/:.*//")
|
||||
|
||||
# Sanity check of selection and ensure user did not escape.
|
||||
echo "$radarcode" | grep -q "^[A-Z]\+$" && printf "%s,%s\\n" "$continentcode" "$radarcode" > "$radarloc" ;}
|
||||
|
||||
getdoppler() {
|
||||
cont="$(sed "s/,.*//" "$radarloc")"
|
||||
loc="$(cut -c 4- "$radarloc")"
|
||||
notify-send "🌦️ Doppler RADAR" "Pulling most recent Doppler RADAR for $loc."
|
||||
if [ "$cont" = "US" ] ; then
|
||||
curl -sL "https://radar.weather.gov/ridge/lite/${loc}_loop.gif" > "$doppler" ;
|
||||
elif [ "$cont" = "EU" ] ; then
|
||||
curl -sL "https://api.sat24.com/animated/${loc}/rainTMC/2/" > "$doppler" ;
|
||||
elif [ "$cont" = "AF" ] ; then
|
||||
curl -sL "https://api.sat24.com/animated/${loc}/rain/2/" > "$doppler" ;
|
||||
fi
|
||||
}
|
||||
|
||||
showdoppler() { setsid -f mpv --no-osc --loop=inf --no-terminal "$doppler" ;}
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) [ ! -f "$radarloc" ] && pickloc && getdoppler
|
||||
[ $(($(date '+%s') - $(stat -c %Y "$doppler"))) -gt "$secs" ] && getdoppler
|
||||
showdoppler ;;
|
||||
2) pickloc && getdoppler && showdoppler ;;
|
||||
3) notify-send "🗺️ Doppler RADAR module" "\- Left click for local Doppler RADAR.
|
||||
- Middle click to update RADAR location.
|
||||
After $secs seconds, new clicks will also automatically update the doppler RADAR." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
echo 🗺️
|
35
.scripts/statusbar/sb-forecast
Normal file
35
.scripts/statusbar/sb-forecast
Normal file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Displays todays precipication chance (☔) and daily low (🥶) and high (🌞).
|
||||
# Usually intended for the statusbar.
|
||||
|
||||
# If we have internet, get a weather report from wttr.in and store it locally.
|
||||
# You could set up a shell alias to view the full file in a pager in the
|
||||
# terminal if desired. This function will only be run once a day when needed.
|
||||
weatherreport="${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport"
|
||||
getforecast() { curl -sf "wttr.in/$LOCATION" > "$weatherreport" || exit 1 ;}
|
||||
|
||||
# Some very particular and terse stream manipulation. We get the maximum
|
||||
# precipitation chance and the daily high and low from the downloaded file and
|
||||
# display them with coresponding emojis.
|
||||
showweather() { printf "%s" "$(sed '16q;d' "$weatherreport" |
|
||||
grep -wo "[0-9]*%" | sort -rn | sed "s/^/☔/g;1q" | tr -d '\n')"
|
||||
sed '13q;d' "$weatherreport" | grep -o "m\\([-+]\\)*[0-9]\\+" | sed 's/+//g' | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " 🥶" $1 "°","🌞" $2 "°"}' ;}
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e less -Srf "$weatherreport" ;;
|
||||
2) getforecast && showweather ;;
|
||||
3) notify-send "🌈 Weather module" "\- Left click for full forecast.
|
||||
- Middle click to update forecast.
|
||||
☔: Chance of rain/snow
|
||||
🥶: Daily low
|
||||
🌞: Daily high" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
# The test if our forcecast is updated to the day. If it isn't download a new
|
||||
# weather report from wttr.in with the above function.
|
||||
[ "$(stat -c %y "$weatherreport" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ] ||
|
||||
getforecast
|
||||
|
||||
showweather
|
17
.scripts/statusbar/sb-help-icon
Normal file
17
.scripts/statusbar/sb-help-icon
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
# The clickable help menu. Middle click to restart wm.
|
||||
|
||||
# If dwm is running, use dwm's readme and restart.
|
||||
pidof dwm >/dev/null &&
|
||||
READMEFILE=/usr/local/share/dwm/larbs.mom
|
||||
restartwm() { pkill -HUP dwm ;} ||
|
||||
restartwm() { i3 restart ;}
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) groff -mom "${READMEFILE:-${XDG_DATA_HOME:-$HOME/.local/share}/larbs/readme.mom}" -Tpdf | zathura - ;;
|
||||
2) restartwm ;;
|
||||
3) notify-send "❓ Help module" "\- Left click to open LARBS guide.
|
||||
- Middle click to refresh window manager." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac; echo "❓"
|
26
.scripts/statusbar/sb-internet
Normal file
26
.scripts/statusbar/sb-internet
Normal file
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Show wifi 📶 and percent strength or 📡 if none.
|
||||
# Show 🌐 if connected to ethernet or ❎ if none.
|
||||
# Show 🔒 if a vpn connection is active
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;;
|
||||
3) notify-send "🌐 Internet module" "\- Click to connect
|
||||
❌: wifi disabled
|
||||
📡: no wifi connection
|
||||
📶: wifi connection with quality
|
||||
❎: no ethernet
|
||||
🌐: ethernet working
|
||||
🔒: vpn is active
|
||||
" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
if grep -xq 'up' /sys/class/net/w*/operstate 2>/dev/null ; then
|
||||
wifiicon="$(awk '/^\s*w/ { print "📶", int($3 * 100 / 70) "% " }' /proc/net/wireless)"
|
||||
elif grep -xq 'down' /sys/class/net/w*/operstate 2>/dev/null ; then
|
||||
grep -xq '0x1003' /sys/class/net/w*/flags && wifiicon="📡 " || wifiicon="❌ "
|
||||
fi
|
||||
|
||||
printf "%s%s%s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate 2>/dev/null)" "$(sed "s/.*/🔒/" /sys/class/net/tun*/operstate 2>/dev/null)"
|
10
.scripts/statusbar/sb-iplocate
Normal file
10
.scripts/statusbar/sb-iplocate
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Gets your public ip address checks which country you are in and
|
||||
# displays that information in the statusbar
|
||||
#
|
||||
# https://www.maketecheasier.com/ip-address-geolocation-lookups-linux/
|
||||
|
||||
ifinstalled "geoip" || exit
|
||||
addr="$(curl ifconfig.me 2>/dev/null)" || exit
|
||||
grep "flag: " "${XDG_DATA_HOME:-$HOME/.local/share}/larbs/emoji" | grep "$(geoiplookup "$addr" | sed 's/.*, //')" | sed "s/flag: //;s/;.*//"
|
16
.scripts/statusbar/sb-kbselect
Normal file
16
.scripts/statusbar/sb-kbselect
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
# works on any init system
|
||||
# requirements: dmenu, xorg-setxkbmap
|
||||
kb="$(setxkbmap -query | grep -oP 'layout:\s*\K\w+')" || exit 1
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) kb_choice="$(awk '/! layout/{flag=1; next} /! variant/{flag=0} flag {print $2, "- " $1}' /usr/share/X11/xkb/rules/base.lst | dmenu -l 15)"
|
||||
kb="$(echo "$kb_choice" | awk '{print $3}')"
|
||||
setxkbmap "$kb"
|
||||
pkill -RTMIN+30 "${STATUSBAR:-dwmblocks}";;
|
||||
3) notify-send "⌨ Keyboard/language module" "$(printf "%s" "\- Current layout: $(setxkbmap -query | grep -oP 'layout:\s*\K\w+')")
|
||||
- Left click to change keyboard.";;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
echo "$kb"
|
20
.scripts/statusbar/sb-mailbox
Normal file
20
.scripts/statusbar/sb-mailbox
Normal file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Displays number of unread mail and an loading icon if updating.
|
||||
# When clicked, brings up `neomutt`.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e neomutt ;;
|
||||
2) setsid -f mw -Y >/dev/null ;;
|
||||
3) notify-send "📬 Mail module" "\- Shows unread mail
|
||||
- Shows 🔃 if syncing mail
|
||||
- Left click opens neomutt
|
||||
- Middle click syncs mail" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/* -type f | wc -l 2>/dev/null)"
|
||||
|
||||
pidof mbsync >/dev/null 2>&1 && icon="🔃"
|
||||
|
||||
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "📬$unread$icon"
|
12
.scripts/statusbar/sb-memory
Normal file
12
.scripts/statusbar/sb-memory
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) notify-send "🧠 Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
|
||||
2) setsid -f "$TERMINAL" -e htop ;;
|
||||
3) notify-send "🧠 Memory module" "\- Shows Memory Used/Total.
|
||||
- Click to show memory hogs.
|
||||
- Middle click to open htop." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠%2.2fGiB/%2.2fGiB\n", ( $3 / 1024), ($2 / 1024))}'
|
37
.scripts/statusbar/sb-moonphase
Normal file
37
.scripts/statusbar/sb-moonphase
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Shows the current moon phase.
|
||||
|
||||
moonfile="${XDG_DATA_HOME:-$HOME/.local/share}/moonphase"
|
||||
|
||||
[ "$(stat -c %y "$moonfile" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ] ||
|
||||
{ curl -sf "wttr.in/?format=%m" > "$moonfile" || exit 1 ;}
|
||||
|
||||
icon="$(cat "$moonfile")"
|
||||
|
||||
case "$icon" in
|
||||
🌑) name="New" ;;
|
||||
🌒) name="Waxing Crescent" ;;
|
||||
🌓) name="First Quarter" ;;
|
||||
🌔) name="Waxing Gibbous" ;;
|
||||
🌕) name="Full" ;;
|
||||
🌖) name="Waning Gibbous" ;;
|
||||
🌗) name="Last Quarter" ;;
|
||||
🌘) name="Waning Crescent" ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
|
||||
echo "${icon-?}"
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
3) notify-send "🌜 Moon phase module" "Displays current moon phase.
|
||||
- 🌑: New
|
||||
- 🌒: Waxing Crescent
|
||||
- 🌓: First Quarter
|
||||
- 🌔: Waxing Gibbous
|
||||
- 🌕: Full
|
||||
- 🌖: Waning Gibbous
|
||||
- 🌗: Last Quarter
|
||||
- 🌘: Waning Crescent" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
8
.scripts/statusbar/sb-mpdup
Normal file
8
.scripts/statusbar/sb-mpdup
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
# This loop will update the mpd statusbar module whenever a command changes the
|
||||
# music player's status. mpd must be running on X's start for this to work.
|
||||
|
||||
while : ; do
|
||||
mpc idle >/dev/null && kill -45 "$(pidof "${STATUSBAR:-dwmblocks}")" || break
|
||||
done
|
19
.scripts/statusbar/sb-music
Normal file
19
.scripts/statusbar/sb-music
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d;/^ERROR/Q" | paste -sd ' ' -;}
|
||||
|
||||
pidof -x sb-mpdup >/dev/null 2>&1 || sb-mpdup >/dev/null 2>&1 &
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) mpc status | filter ; setsid -f "$TERMINAL" -e ncmpcpp ;; # right click, pause/unpause
|
||||
2) mpc toggle | filter ;; # right click, pause/unpause
|
||||
3) mpc status | filter ; notify-send "🎵 Music module" "\- Shows mpd song playing.
|
||||
- ⏸ when paused.
|
||||
- Left click opens ncmpcpp.
|
||||
- Middle click pauses.
|
||||
- Scroll changes track.";; # right click, pause/unpause
|
||||
4) mpc prev | filter ;; # scroll up, previous
|
||||
5) mpc next | filter ;; # scroll down, next
|
||||
6) mpc status | filter ; "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
*) mpc status | filter ;;
|
||||
esac
|
29
.scripts/statusbar/sb-nettraf
Normal file
29
.scripts/statusbar/sb-nettraf
Normal file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Module showing network traffic. Shows how much data has been received (RX) or
|
||||
# transmitted (TX) since the previous time this script ran. So if run every
|
||||
# second, gives network traffic per second.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e bmon ;;
|
||||
3) notify-send "🌐 Network traffic module" "🔻: Traffic received
|
||||
🔺: Traffic transmitted" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
update() {
|
||||
sum=0
|
||||
for arg; do
|
||||
read -r i < "$arg"
|
||||
sum=$(( sum + i ))
|
||||
done
|
||||
cache=/tmp/${1##*/}
|
||||
[ -f "$cache" ] && read -r old < "$cache" || old=0
|
||||
printf %d\\n "$sum" > "$cache"
|
||||
printf %d\\n $(( sum - old ))
|
||||
}
|
||||
|
||||
rx=$(update /sys/class/net/[ew]*/statistics/rx_bytes)
|
||||
tx=$(update /sys/class/net/[ew]*/statistics/tx_bytes)
|
||||
|
||||
printf "🔻%4sB 🔺%4sB\\n" $(numfmt --to=iec $rx $tx)
|
17
.scripts/statusbar/sb-news
Normal file
17
.scripts/statusbar/sb-news
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Displays number of unread news items and an loading icon if updating.
|
||||
# When clicked, brings up `newsboat`.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid "$TERMINAL" -e newsboat ;;
|
||||
2) setsid -f newsup >/dev/null exit ;;
|
||||
3) notify-send "📰 News module" "\- Shows unread news items
|
||||
- Shows 🔃 if updating with \`newsup\`
|
||||
- Left click opens newsboat
|
||||
- Middle click syncs RSS feeds
|
||||
<b>Note:</b> Only one instance of newsboat (including updates) may be running at a time." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
cat /tmp/newsupdate 2>/dev/null || echo "$(newsboat -x print-unread | awk '{ if($1>0) print "📰" $1}')$(cat "${XDG_CONFIG_HOME:-$HOME/.config}"/newsboat/.update 2>/dev/null)"
|
29
.scripts/statusbar/sb-pacpackages
Normal file
29
.scripts/statusbar/sb-pacpackages
Normal file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Displays number of upgradeable packages.
|
||||
# For this to work, have a `pacman -Sy` command run in the background as a
|
||||
# cronjob every so often as root. This script will then read those packages.
|
||||
# When clicked, it will run an upgrade via pacman.
|
||||
#
|
||||
# Add the following text as a file in /usr/share/libalpm/hooks/statusbar.hook:
|
||||
#
|
||||
# [Trigger]
|
||||
# Operation = Upgrade
|
||||
# Type = Package
|
||||
# Target = *
|
||||
#
|
||||
# [Action]
|
||||
# Description = Updating statusbar...
|
||||
# When = PostTransaction
|
||||
# Exec = /usr/bin/pkill -RTMIN+8 dwmblocks # Or i3blocks if using i3.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e sb-popupgrade ;;
|
||||
2) notify-send "$(/usr/bin/pacman -Qu)" ;;
|
||||
3) notify-send "🎁 Upgrade module" "📦: number of upgradable packages
|
||||
- Left click to upgrade packages
|
||||
- Middle click to show upgradable packages" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/📦/;s/^📦0$//g"
|
20
.scripts/statusbar/sb-tasks
Normal file
20
.scripts/statusbar/sb-tasks
Normal file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Originally by Andr3as07 <https://github.com/Andr3as07>
|
||||
# Some changes by Luke
|
||||
# Rebuild by Tenyun
|
||||
|
||||
# This block displays the number running background tasks. Requires tsp.
|
||||
|
||||
num=$(tsp -l | awk -v numr=0 -v numq=0 '{if (/running/)numr++; if (/queued/)numq++} END{print numr+numq"("numq")"}')
|
||||
|
||||
# Handle mouse clicks
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e tsp -l ;;
|
||||
3) notify-send "Tasks module" "🤖: number of running/queued background tasks
|
||||
- Left click opens tsp" ;; # Right click
|
||||
2) $EDITOR "$0" ;; # Middle click
|
||||
esac
|
||||
|
||||
[ "$num" != "0(0)" ] &&
|
||||
echo "🤖$num"
|
27
.scripts/statusbar/sb-torrent
Normal file
27
.scripts/statusbar/sb-torrent
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
transmission-remote -l | grep % |
|
||||
sed " # The letters are for sorting and will not appear.
|
||||
s/.*Stopped.*/A 🛑/;
|
||||
s/.*Seeding.*/Z 🌱/;
|
||||
s/.*100%.*/N ✅/;
|
||||
s/.*Idle.*/B 🕰️/;
|
||||
s/.*Uploading.*/L ⬆️/;
|
||||
s/.*%.*/M ⬇️/" |
|
||||
sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' ' -
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e tremc ;;
|
||||
2) td-toggle ;;
|
||||
3) notify-send "🌱 Torrent module" "\- Left click to open tremc.
|
||||
- Middle click to toggle transmission.
|
||||
- Shift click to edit script.
|
||||
Module shows number of torrents:
|
||||
🛑: paused
|
||||
🕰: idle (seeds needed)
|
||||
🔼: uploading (unfinished)
|
||||
🔽: downloading
|
||||
✅: done
|
||||
🌱: done and seeding" ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
30
.scripts/statusbar/sb-volume
Normal file
30
.scripts/statusbar/sb-volume
Normal file
@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Prints the current volume or 🔇 if muted.
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -f "$TERMINAL" -e pulsemixer ;;
|
||||
2) pamixer -t ;;
|
||||
4) pamixer --allow-boost -i 1 ;;
|
||||
5) pamixer --allow-boost -d 1 ;;
|
||||
3) notify-send "📢 Volume module" "\- Shows volume 🔊, 🔇 if muted.
|
||||
- Middle click to mute.
|
||||
- Scroll to change." ;;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
[ $(pamixer --get-mute) = true ] && echo 🔇 && exit
|
||||
|
||||
vol="$(pamixer --get-volume)"
|
||||
|
||||
if [ "$vol" -gt "70" ]; then
|
||||
icon="🔊"
|
||||
elif [ "$vol" -gt "30" ]; then
|
||||
icon="🔉"
|
||||
elif [ "$vol" -gt "0" ]; then
|
||||
icon="🔈"
|
||||
else
|
||||
echo 🔇 && exit
|
||||
fi
|
||||
|
||||
echo "$icon$vol%"
|
Loading…
x
Reference in New Issue
Block a user