This file contains 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
#!/usr/bin/env bash | |
# | |
# Wrapper for nitrogen, so LightDM wallpaper is synced. | |
# | |
# Copyright (C) 2021 Rafael Cavalcanti <https://rafaelc.org/dev> | |
# Licensed under GPLv3 | |
set -euo pipefail | |
/usr/bin/nitrogen "$@" |
This file contains 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 | |
# | |
# Send files to phone. | |
# It's a wrapper around KDE Connect CLI to provide | |
# a bit more functionality. | |
# | |
# Copyright (C) 2019-2021 Rafael Cavalcanti <https://rafaelc.org/dev> | |
# Licensed under GPLv3 | |
readonly script_name="$(basename "$0")" |
This file contains 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
#!/usr/bin/env bash | |
# | |
# Helper for adding annotations to TaskWarrior tasks. | |
# Features: | |
# - Add multi-line annotations to your tasks using your preferred editor. | |
# - Add single-line annotations as always (via cli arguments) or using the editor. | |
# | |
# Copyright (C) 2021 Rafael Cavalcanti <https://rafaelc.org/dev> | |
# Copyright (C) 2016 djp <djp@cutter> | |
# |
This file contains 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
#!/usr/bin/env bash | |
# | |
# Backup all playlists from a channel into a git repo in json. | |
# | |
# Dependencies: | |
# - jq | |
# - git | |
# - yt-dlp | |
# | |
# Copyright (C) 2021 Rafael Cavalcanti <https://rafaelc.org/dev> |