diff --git a/applicationConfiguration/.emacs/init.el b/applicationConfiguration/.emacs/init.el index 4cce93f..e42be88 100644 --- a/applicationConfiguration/.emacs/init.el +++ b/applicationConfiguration/.emacs/init.el @@ -16,7 +16,7 @@ (when (eq system-type 'darwin) (setq mac-command-modifier 'meta)) ; deal with mac command key problems: -(setq backup-directory-alist `(("." . "~/Nextcloud/Documents/org/.saves"))) ; deal with bullshit files in every dir. +(setq backup-directory-alist `(("." . "~/Dropbox/org/.saves"))) ; deal with bullshit files in every dir. (set-frame-font "Consolas 12") ; set default font, versions of emacs may require set-default-font (setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el") ;set default init file to agares @@ -35,9 +35,6 @@ (setq ispell-program-name "/usr/local/bin/ispell") ; set flyspell's spellchecker (add-hook 'org-mode-hook 'turn-on-flyspell) ; enable flyspell-mode in all org-mode enabled files -(org-babel-do-load-languages - 'org-babel-load-languages '((python . t))) - (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -122,7 +119,7 @@ '("~/Nextcloud/Documents/org/work.org" "~/Nextcloud/Documents/org/refile-beorg.org" "~/Nextcloud/Documents/org/personal.org" "~/Nextcloud/Documents/org/someday.org")) '(org-capture-templates '(("c" "generic \"to do\" capture template" entry - (file "~/Nextcloud/Documents/org/refile-beorg.org") + (file "~/Nextcloud/Documentsy/org/refile-beorg.org") "" :immediate-finish t))) '(package-selected-packages '(pdf-tools weechat jedi python-mode pylint py-autopep8 powershell outline-magic markdown-mode magit flycheck exec-path-from-shell elpygen elpy ein doom-themes csharp-mode))) diff --git a/deployments/mediaServer/docker-compose.yml b/deployments/mediaServer/docker-compose.yml new file mode 100644 index 0000000..6c951ce --- /dev/null +++ b/deployments/mediaServer/docker-compose.yml @@ -0,0 +1,61 @@ +version: '3' + +services: + sonarr: + image: "linuxserver/sonarr" + ports: + - "8989:8989" + restart: unless-stopped + environment: + PUID: 1000 + PGID: 1000 + TZ: America/Chicago + volumes: + - "/Users/josiah/Documents/apps/sonarr:/config" + - "/Users/josiah/Downloads/usenet-complete/:/downloads" + - "/Volumes/usenet/tv/:/tv" + lidarr: + image: "linuxserver/lidarr" + ports: + - "8686:8686" + restart: unless-stopped + environment: + PUID: 1000 + PGID: 1000 + TZ: America/Chicago + volumes: + - "/Users/josiah/Documents/apps/lidarr:/config" + - "/Users/josiah/Downloads/usenet-complete/:/downloads" + - "/Volumes/usenet/audio/:/music" + radarr: + image: "linuxserver/radarr" + ports: + - "7878:7878" + restart: unless-stopped + environment: + PUID: 1000 + PGID: 1000 + TZ: America/Chicago + volumes: + - "/Users/josiah/Documents/apps/radarr:/config" + - "/Users/josiah/Downloads/usenet-complete/:/downloads" + - "/Volumes/usenet/movies/:/movies" + sabnzb: + image: "linuxserver/sabnzbd" + ports: + - "8080:8080" + - "9090:9090" + restart: unless-stopped + environment: + PUID: 1000 + PGID: 1000 + TZ: America/Chicago + volumes: + - "/Users/josiah/Documents/apps/sabnzbd:/config" + - "/Users/josiah/Downloads/usenet-complete/:/downloads" + - "/Users/josiah/Downloads/usenet-incomplete/:/incomplete-downloads" + - "/Users/josiah/Downloads/usenet-watched/:/watched-folder" + - "/Volumes/usenet/tv:/tv" + - "/Volumes/usenet/audio/:/music" + - "/Volumes/usenet/movies/:/movies" +