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
# -------------------- Django settings for NEMO -------------------- | |
# Customize these to suit your needs. Documentation can be found at: | |
# https://docs.djangoproject.com/en/1.11/ref/settings/ | |
# Core settings | |
# DANGER: SETTING "DEBUG = True" ON A PRODUCTION SYSTEM IS EXTREMELY DANGEROUS. | |
# ONLY SET "DEBUG = True" FOR DEVELOPMENT AND TESTING!!! | |
DEBUG = True | |
AUTH_USER_MODEL = 'NEMO.User' |
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
Nemo actions stored in `~/.local/share/nemo/actions/*.nemo_action` | |
File `install-apk.nemo_action` | |
``` | |
[Nemo Action] | |
# Add menu to *.apk files | |
# | |
# adb install FILENAME | |
# | |
Active=true |
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
Setup: UEFI, LVM + LUKS encrypted drive | |
Bootloader: Grub | |
Links: | |
- https://wiki.manjaro.org/index.php/Restore_the_GRUB_Bootloader | |
- | |
Restore GRUB (boot into live env): | |
# get the encrypted partition (crypto_LUKS) | |
lsblk -f |
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 | |
nemo_built=false | |
Cinnamon_built=false | |
nemo_installed=false | |
Cinnamon_installed=false | |
MODULES=( | |
"cjs:https://github.com/linuxmint/cjs.git" |