Change user name to "ambrevar" in static settings

master
Pierre Neidhardt 2015-07-11 12:33:45 +02:00
parent 319382ee62
commit 7e147ae9a7
5 changed files with 9 additions and 29 deletions

View File

@ -27,10 +27,10 @@ media_dir=/srv/dlna
friendly_name=IlNumeroUno
# set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache
db_dir=/home/peter/.config/minidlna/cache
db_dir=/home/ambrevar/.config/minidlna/cache
# set this if you would like to specify the directory where you want MiniDLNA to store its log file
log_dir=/home/peter/.config/minidlna
log_dir=/home/ambrevar/.config/minidlna
# set this to change the verbosity of the information that is logged
# each section can use a different level: off, fatal, error, warn, info, or debug

Binary file not shown.

View File

@ -12,13 +12,13 @@
"blocklist-url": "http://www.example.com/blocklist",
"cache-size-mb": 4,
"dht-enabled": true,
"download-dir": "/home/peter/temp",
"download-dir": "/home/ambrevar/temp",
"download-queue-enabled": true,
"download-queue-size": 5,
"encryption": 2,
"encryption": 1,
"idle-seeding-limit": 30,
"idle-seeding-limit-enabled": false,
"incomplete-dir": "/home/peter/Downloads",
"incomplete-dir": "/home/ambrevar/temp",
"incomplete-dir-enabled": false,
"lpd-enabled": false,
"message-level": 2,
@ -43,7 +43,7 @@
"rpc-authentication-required": false,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-password": "{59ff5bb6c897a6eb0a5a1be27f2ba73c77f7a49843vQktLP",
"rpc-password": "{4f22e3fd96f7a735dda8aab9dcf21f1f2db83236WtWd032x",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "",
@ -63,6 +63,6 @@
"umask": 18,
"upload-slots-per-torrent": 14,
"utp-enabled": true,
"watch-dir": "/home/peter/temp",
"watch-dir": "/home/ambrevar/temp",
"watch-dir-enabled": true
}

View File

@ -71,7 +71,7 @@ restored."
;; WARNING: this style is a work-in-progress.
(c-add-style
"peter"
"ambrevar"
`((c-comment-only-line-offset . 0)
(c-auto-align-backslashes . nil)
(c-basic-offset . ,tab-width)
@ -102,7 +102,7 @@ restored."
;; The cc-fmt hook is disable since there is no standard C formatting,
;; unlike for Go.
; (add-hook 'before-save-hook 'cc-fmt nil t)
(c-set-style "peter") ;; We override existing values.
(c-set-style "ambrevar") ;; We override existing values.
(add-hook 'compilation-before-hook 'cc-set-compiler nil t)
(local-set-key (kbd "<f9>") 'cc-clean)
(local-set-key (kbd "M-TAB") 'semantic-complete-analyze-inline)

View File

@ -83,26 +83,6 @@ export MANWIDTH=80
## TODO: BSD version?
export TIME_STYLE=+"|%Y-%m-%d %H:%M:%S|"
## System locale
if [ "$USER" = "peter" ]; then
LANG=sv_SE.UTF-8
LC_CTYPE="sv_SE.UTF-8"
LC_NUMERIC="sv_SE.UTF-8"
LC_TIME="sv_SE.UTF-8"
LC_COLLATE="sv_SE.UTF-8"
LC_MONETARY="sv_SE.UTF-8"
LC_MESSAGES=sv_SE.UTF-8
LC_PAPER="sv_SE.UTF-8"
LC_NAME="sv_SE.UTF-8"
LC_ADDRESS="sv_SE.UTF-8"
LC_TELEPHONE="sv_SE.UTF-8"
LC_MEASUREMENT="sv_SE.UTF-8"
LC_IDENTIFICATION="sv_SE.UTF-8"
# LC_ALL=
LC_ALL=sv_SE.UTF-8
fi
## Default text editor
EDITOR="nano"
command -v vim >/dev/null 2>&1 && EDITOR="vim"