This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Template: | |
| Dear {applicant name}, | |
| Thank you for your interest in {company name} and {position} position. | |
| We have reviewed your application and regret to inform you that your profile is not a close enough match for the position’s requirements, therefore we will not be moving forward with your application on this occasion. | |
| We would like to keep in touch with you to inform you about future job vacancies, and reach out when a position opens up that may be a good fit. | |
| We appreciate your interest in {company name} and wish you all the best in your future career. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| CIDER_TOKEN="" # Get Cider token from the app. | |
| # See: https://cider.sh/docs/client/rpc | |
| STATE="$(curl -s -H "apptoken: $CIDER_TOKEN" http://localhost:10767/api/v1/playback/is-playing | jq '.is_playing')" | |
| if [ "$STATE" = "true" ]; then | |
| MEDIA="$(curl -s -H "apptoken: $CIDER_TOKEN" http://localhost:10767/api/v1/playback/now-playing | jq -r '.info.artistName + " - " + .info.name')" | |
| sketchybar --set $NAME label="$MEDIA" drawing=on | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Shared on the Obsidian Discord */ | |
| /* ############ INTERNAL LINK STYLING ## */ | |
| span.data-link-text, | |
| a.internal-link { | |
| --accent-color: var(--color-accent); | |
| --text-color: color-mix(in srgb, var(--text-normal), var(--accent-color) 50%); | |
| --bg-color: color-mix(in srgb, var(--accent-color), transparent 80%); | |
| --inside-border-color: color-mix(in srgb, var(--text-color) 90%, white); | |
| --new-border-color: color-mix(in srgb, var(--text-color), transparent 60%); |
OlderNewer