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
| #!/usr/bin/env python3 | |
| import csv | |
| from collections import defaultdict | |
| from decimal import Decimal, InvalidOperation, ROUND_HALF_UP | |
| from pathlib import Path | |
| import argparse | |
| def parse_args(): | |
| p = argparse.ArgumentParser( | |
| description="Aggregate total received per recipient from each donor." |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| INSTALL_DIR="$HOME/.local/zen" | |
| BIN_DIR="$HOME/.local/bin" | |
| DESKTOP_FILE="$HOME/.local/share/applications/zen.desktop" | |
| ICON_DIR="$HOME/.local/share/icons/hicolor/128x128/apps" | |
| echo "Installing/Updating Zen Browser → $INSTALL_DIR" | |
| echo |
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
| { pkgs, ... }: | |
| { | |
| programs.waybar = { | |
| enable = true; | |
| settings = { | |
| mainBar = { | |
| layer = "top"; | |
| position = "top"; | |
| height = 26; |
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
| { | |
| lib, | |
| stdenv, | |
| fetchurl, | |
| dpkg, | |
| wrapGAppsHook, | |
| autoPatchelfHook, | |
| udev, | |
| libdrm, | |
| libpqxx, |
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 | |
| # Variables | |
| VSCODIUM_DIR="$HOME/.local/vscodium" | |
| VSCODIUM_BIN="$HOME/.local/bin/codium" | |
| REPO_URL="https://github.com/VSCodium/vscodium/releases/latest" | |
| # you can also use arm64,armhf,riscv64 | |
| ARCH="x64" | |
| # Find the latest version |