A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
font pango:UbuntuMono Nerd Font 10.000000 | |
floating_modifier Mod4 | |
default_border pixel 2 | |
default_floating_border normal 2 | |
hide_edge_borders none | |
focus_wrapping no | |
focus_follows_mouse yes | |
focus_on_window_activation smart | |
mouse_warping output | |
workspace_layout default |
A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
================================== | |
INSTALLING NIXOS WITH OPT-IN STATE | |
Based mostly on: | |
grahamc.com/blog/erase-your-darlings | |
gist.github.com/mx00s/ea2462a3fe6fdaa65692fe7ee824de3e | |
nixos.org/manual/nixos/stable/ |
See here some of the API's you can use in your discord bot or anything. For any help or questions on how to use one, please contact the owner of the API and not me.
A much bigger list of APIs can be found here
#! /usr/bin/env nix-shell | |
#! nix-shell -i bash -p gallery-dl | |
username='username_here' | |
password='password_here' | |
twitter_url='https://twitter.com/' | |
list_username=("username1" "username2") | |
for item in "${list_username[@]}"; do |
{ config, ... }: | |
let | |
immichHost = "immich.example.com"; # TODO: put your immich domain name here | |
immichRoot = "/tank/immich"; # TODO: Tweak these to your desired storage locations | |
immichPhotos = "${immichRoot}/photos"; | |
immichAppdataRoot = "${immichRoot}/appdata"; | |
immichVersion = "release"; | |
immichExternalVolume1 = "/tank/BackupData/Google Photos/[email protected]"; # TODO: if external volumes are desired |
$ parted /dev/sdX mklabel gpt
/dev/sdXY
)
$ parted /dev/sdX mkpart esp fat32 1MiB 512MiB
$ parted /dev/sdX set 1 esp on
$ parted /dev/sdX set 1 boot on
$ mkfs.fat -F 32 -n UEFI /dev/sdXY