Initial commit of Hyprland config

This commit is contained in:
2025-02-24 01:15:49 -05:00
commit 0472007a74
33 changed files with 1403 additions and 0 deletions

34
pastes/nextweek Executable file
View File

@ -0,0 +1,34 @@
#!/usr/bin/env zsh
#set -x
case "$(basename ${0})" in
today)
date +%F | tr -d '\n'
;;
yesterday)
date -d '-1 day' +%F | tr -d '\n'
;;
tomorrow)
date -d '+1 day' +%F | tr -d '\n'
;;
nextweek)
date -d '+1 week' +%F | tr -d '\n'
;;
lastweek)
date -d '-1 week' +%F | tr -d '\n'
;;
nextyear)
date -d '+1 year' +%F | tr -d '\n'
;;
lastyear)
date -d '-1 year' +%F | tr -d '\n'
;;
now)
date +'%FT%T %:z'
;;
*)
date
;;
esac
#set +x