power menu, redshift, polybar

This commit is contained in:
azpsen
2024-01-28 16:37:10 -06:00
parent 89516a6ce1
commit 319b44ecbd
307 changed files with 7642 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
# Script: notification-mattermost
A small script that shows your unread Mattermost messages and mentions.
## Dependencies
* `curl`
* `jq`
## Configuration
Generate a token at `Account Settings` > `Security` > `Personal Access Tokens`. You have to enable tokens in your server config.
## Module
```ini
[module/notification-mattermost]
type = custom/script
exec = ~/polybar-scripts/notification-mattermost.sh
interval = 60
```

View File

@@ -0,0 +1,15 @@
#!/bin/sh
MATTERMOST_SERVER="https://mattermost-server.net"
MATTERMOST_TOKEN=""
if notifications=$(curl -sf -H "Authorization: Bearer $MATTERMOST_TOKEN" "$MATTERMOST_SERVER/api/v4/users/me/teams/unread"); then
notifications_msg=$(echo "$notifications" | jq -s 'map(.[].msg_count) | add')
notifications_mention=$(echo "$notifications" | jq -s 'map(.[].mention_count) | add')
if [ "$notifications_msg" -gt 0 ] || [ "$notifications_mention" -gt 0 ]; then
echo "# $notifications_msg / $notifications_mention"
else
echo ""
fi
fi