diff --git a/.config/minidlna/minidlna.conf b/.config/minidlna/minidlna.conf index ba14c758..ad18ee0b 100644 --- a/.config/minidlna/minidlna.conf +++ b/.config/minidlna/minidlna.conf @@ -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 diff --git a/.config/mps-youtube/config b/.config/mps-youtube/config index a9dc1ad0..01f70d0c 100644 Binary files a/.config/mps-youtube/config and b/.config/mps-youtube/config differ diff --git a/.config/transmission-daemon/settings.json b/.config/transmission-daemon/settings.json index 97585f9a..0c5cd85a 100644 --- a/.config/transmission-daemon/settings.json +++ b/.config/transmission-daemon/settings.json @@ -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 } diff --git a/.emacs.d/lisp/mode-cc.el b/.emacs.d/lisp/mode-cc.el index 75d25d1c..98cbcff4 100644 --- a/.emacs.d/lisp/mode-cc.el +++ b/.emacs.d/lisp/mode-cc.el @@ -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 "") 'cc-clean) (local-set-key (kbd "M-TAB") 'semantic-complete-analyze-inline) diff --git a/.profile b/.profile index 1a1c7d2e..13a8ac7e 100644 --- a/.profile +++ b/.profile @@ -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"