1 2 3 4 5 6 7 8
#!/bin/sh size=$(alacritty msg get-config | jq -r '.font.size') if [ $size = "25.0" ]; then alacritty msg config 'font.size=12' else alacritty msg config 'font.size=25' fi