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
#define BUTTON_PRESSED LOW | |
#define BUTTON_NOT_PRESSED HIGH | |
//#define DEBUG 1 // uncomment to enable serial output | |
#ifdef DEBUG | |
#define _PL(a) Serial.println(a) | |
#define _PP(a) Serial.print(a) | |
#else | |
#define _PL(a) |
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
version: '2.4' | |
services: | |
qbittorrent: | |
image: linuxserver/qbittorrent | |
restart: unless-stopped | |
volumes: | |
- /home/$USER/downloads:/downloads # where the files will be downloaded | |
- /home/$USER/qbittorrent/config:/config # where the persistent configuration will be stored | |
environment: |
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 | |
# Script to generate an EFI entry in arch | |
# so that there is no need for a boot manager, | |
# as kernel is directly launched from EFI boot process | |
# Tailored for and tested on a Thinkpad x220 | |
# by metroid2010 | |
# uncomment to disable the creation of a fallback entry | |
#NO_FALLBACK=1 |