From 63f047cf1b8b0e1ff1f1b68ee7874d07b602122f Mon Sep 17 00:00:00 2001 From: Dorian Wood Date: Mon, 19 Apr 2021 14:59:21 -0400 Subject: [PATCH] Tweaking emacs themes and fixing $EDITOR setting --- dot_config/doom/config.el | 4 ++-- dot_config/emacs/init.el | 4 ++-- dot_local/spells/executable_maimpick | 4 ++-- dot_profile | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dot_config/doom/config.el b/dot_config/doom/config.el index 7913099..f4599d1 100644 --- a/dot_config/doom/config.el +++ b/dot_config/doom/config.el @@ -26,8 +26,8 @@ ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: -;;(setq doom-theme 'solarized-dark) -(setq doom-theme 'doom-one) +(setq doom-theme 'doom-fairy-floss) +;;(setq doom-theme 'doom-one) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! diff --git a/dot_config/emacs/init.el b/dot_config/emacs/init.el index e98940e..25aa0e6 100644 --- a/dot_config/emacs/init.el +++ b/dot_config/emacs/init.el @@ -28,8 +28,8 @@ ;;; License: MIT ;; Fix shitty transparency -(set-frame-parameter (selected-frame) 'alpha '(100 . 50)) -(add-to-list 'default-frame-alist '(alpha . (100 . 50))) +(set-frame-parameter (selected-frame) 'alpha '(80 . 50)) +(add-to-list 'default-frame-alist '(alpha . (80 . 50))) ;; In the strange case that early-init.el wasn't loaded (e.g. you're using ;; Chemacs 1? Or you're loading this file directly?), we do it explicitly: diff --git a/dot_local/spells/executable_maimpick b/dot_local/spells/executable_maimpick index de1c034..63d0bc7 100644 --- a/dot_local/spells/executable_maimpick +++ b/dot_local/spells/executable_maimpick @@ -6,8 +6,8 @@ case "$(printf "a selected area\\ncurrent window\\nfull screen\\na selected area (copy)\\ncurrent window (copy)\\nfull screen (copy)" | dmenu -l 6 -i -p "Screenshot which area?")" in "a selected area") maim -s pic-selected-"$(date '+%y%m%d-%H%M-%S').png" ;; "current window") maim -i "$(xdotool getactivewindow)" pic-window-"$(date '+%y%m%d-%H%M-%S').png" ;; - "full screen") maim pic-full-"$(date '+%y%m%d-%H%M-%S').png" ;; + "full screen") sleep 2; maim pic-full-"$(date '+%y%m%d-%H%M-%S').png" ;; "a selected area (copy)") maim -s | xclip -selection clipboard -t image/png ;; "current window (copy)") maim -i "$(xdotool getactivewindow)" | xclip -selection clipboard -t image/png ;; - "full screen (copy)") maim | xclip -selection clipboard -t image/png ;; + "full screen (copy)") sleep 2; maim | xclip -selection clipboard -t image/png ;; esac diff --git a/dot_profile b/dot_profile index 70c2521..c9801d2 100644 --- a/dot_profile +++ b/dot_profile @@ -4,6 +4,6 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -EDITOR=emacsclient +export EDITOR=emacsclient PATH=~/.local/spells:$PATH echo "Bash Profile Loaded"