Tweaking emacs themes and fixing $EDITOR setting

This commit is contained in:
Dorian Wood 2021-04-19 14:59:21 -04:00
parent c25a8324dd
commit 63f047cf1b
4 changed files with 7 additions and 7 deletions

View File

@ -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!

View File

@ -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:

View File

@ -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

View File

@ -4,6 +4,6 @@
[[ -f ~/.bashrc ]] && . ~/.bashrc
EDITOR=emacsclient
export EDITOR=emacsclient
PATH=~/.local/spells:$PATH
echo "Bash Profile Loaded"