add hyprland configs
This commit is contained in:
23
.config/hypr/hyprlock/scripts/location.sh
Executable file
23
.config/hypr/hyprlock/scripts/location.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
cache_file="$HOME/.cache/ip_cache.txt"
|
||||
|
||||
if [ ! -f "$cache_file" ]; then
|
||||
mkdir -p "$(dirname "$cache_file")" # Create .cache directory if it doesn't exist
|
||||
touch "$cache_file"
|
||||
fi
|
||||
|
||||
last_modified=$(stat -c %Y "$cache_file")
|
||||
current_date=$(date +%s)
|
||||
time_diff=$((current_date - last_modified))
|
||||
expiry_time=86400
|
||||
cached_data=$(<"$cache_file")
|
||||
|
||||
if [ $time_diff -lt $expiry_time ] && [ -n "$cached_data" ]; then
|
||||
echo "$cached_data"
|
||||
exit
|
||||
fi
|
||||
|
||||
response=$(curl -s ipinfo.io 2>/dev/null | jq -r '.country + ", " + .city' 2>/dev/null)
|
||||
city=$response
|
||||
echo "$city" >"$cache_file"
|
Reference in New Issue
Block a user