diff --git a/applicationConfiguration/.emacs/init.el b/applicationConfiguration/.emacs/init.el index 0249684..758411d 100644 --- a/applicationConfiguration/.emacs/init.el +++ b/applicationConfiguration/.emacs/init.el @@ -34,6 +34,13 @@ (require 'org) ; Enable Org mode (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 +(setq org-src-fontify-natively t + org-src-window-setup 'current-window + org-src-strip-leading-and-trailing-blank-lines t + org-src-preserve-indentation t + org-src-tab-acts-natively t + org-edit-src-content-indentation 0) + (custom-set-faces ;; custom-set-faces was added by Custom. diff --git a/deployments/mediaServer/docker-compose.yml b/deployments/mediaServer/docker-compose.yml index 6c951ce..522e0ec 100644 --- a/deployments/mediaServer/docker-compose.yml +++ b/deployments/mediaServer/docker-compose.yml @@ -14,17 +14,30 @@ services: - "/Users/josiah/Documents/apps/sonarr:/config" - "/Users/josiah/Downloads/usenet-complete/:/downloads" - "/Volumes/usenet/tv/:/tv" - lidarr: - image: "linuxserver/lidarr" + # 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" + headphones: + image: "linuxserver/headphones" ports: - - "8686:8686" + - "8181:8181" restart: unless-stopped environment: PUID: 1000 PGID: 1000 TZ: America/Chicago volumes: - - "/Users/josiah/Documents/apps/lidarr:/config" + - "/Users/josiah/Documents/apps/headphones:/config" - "/Users/josiah/Downloads/usenet-complete/:/downloads" - "/Volumes/usenet/audio/:/music" radarr: