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/python3 | |
| import argparse | |
| import subprocess | |
| import urllib.request | |
| import urllib.error | |
| import json | |
| import re | |
| import os | |
| import shutil |
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
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| indent_style = space | |
| indent_size = 4 |
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
| -- ingore case when searching in lowercase | |
| vim.opt.hlsearch = false | |
| vim.opt.ignorecase = true | |
| vim.opt.smartcase = true | |
| -- scroll half screen | |
| vim.opt.scrolljump = -50 | |
| -- ignore case when completing file names and directories | |
| vim.opt.wildignorecase = true |
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
| # session settings | |
| set -g default-terminal 'screen-256color' | |
| set -g history-limit 5000 | |
| set -g mouse on | |
| set -g base-index 1 | |
| set -g renumber-windows on | |
| set -g status-keys vi | |
| set -g status-left '' | |
| set -g status-style 'fg=grey,bg=default' |
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
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| server_name = zoneminder; | |
| location = / { | |
| return 301 zm; | |
| } |