mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-10-30 12:01:16 +01:00
bulkadding .local files
This commit is contained in:
9
.local/bin/statusbar/iplocate
Executable file
9
.local/bin/statusbar/iplocate
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/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 "geoiplookup" || exit
|
||||
addr="$(curl ifconfig.me 2>/dev/null)" || exit
|
||||
grep "flag: " ~/.config/emoji | grep "$(geoiplookup $addr | sed 's/.*, //')" | sed "s/flag: //;s/;.*//"
|
||||
Reference in New Issue
Block a user