feat:migrate hyprland config with nwg tools

This commit is contained in:
grassblock 2025-06-04 15:08:49 +08:00
parent 54ea69dd8e
commit fc39a811c9
251 changed files with 23198 additions and 118 deletions

View file

@ -0,0 +1,14 @@
#!/usr/bin/bash
# Based on the 'Github notifications' example from Waybar's Wiki
# Depends on jq Command-line JSON processor
# Obtain a notifications token at https://github.com/settings/tokens
# save it to a file as below.
token=`cat ${HOME}/.config/github/notifications.token`
count=`curl -u nwg-piotr:${token} https://api.github.com/notifications -s | jq '. | length'`
if [[ "$count" != "0" ]]; then
echo /home/piotr/.config/nwg-panel/icons_light/github.svg
echo $count
fi