sb-iplocate (440B)
1 #!/bin/sh 2 3 # Gets your public ip address checks which country you are in and 4 # displays that information in the statusbar 5 # 6 # https://www.maketecheasier.com/ip-address-geolocation-lookups-linux/ 7 8 set -e 9 10 ifinstalled "geoip" 11 addr="$(geoiplookup "$(curl -sfm 1 ifconfig.me 2>/dev/null)")" 12 name="${addr##*, }" 13 flag="$(grep "flag: $name" "${XDG_DATA_HOME:-$HOME/.local/share}/larbs/emoji")" 14 flag="${flag%% *}" 15 printf "%s %s\\n" "$flag" "$name"