diff --git a/.gitignore b/.gitignore index 4da664a..6615921 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ home/xmonad/.xmonad/xmonad-x86_64-linux +home/tmux/.config/tmux/plugins/ *.hi *.o *~ diff --git a/home/picom/.config/picom/picom.conf b/home/picom/.config/picom/picom.conf index cfa8584..fa9387b 100644 --- a/home/picom/.config/picom/picom.conf +++ b/home/picom/.config/picom/picom.conf @@ -6,6 +6,8 @@ rounded-corners-exclude = [ "class_g = 'Xmobar'", "class_g = 'xmobar'", "name = 'xmobar'", + "name *= 'emacs'", + "class_g = 'emacs'" # "class_g *= 'awesome'", ]; rounded-corners-rule = [ @@ -18,10 +20,16 @@ rounded-corners-rule = [ "0:class_g = 'xmonad'", "5:class_g = 'Go-for-it'", "5:class_g = 'Deadd-notification-center'", + "5:class_g = 'emacs'", + "50:name = 'video0'", + "50:class_g = 'firefox'" ]; -corner-radius = 3; -round-borders = 3; +corner-radius-rule = [ + "50:class_g = 'firefox'" +] +corner-radius = 5; +round-borders = 5; round-borders-exclude = [ "name = 'Notification area'" ]; @@ -39,7 +47,7 @@ round-borders-rule = [ "5:class_g = 'Signal'", "5:class_g = 'Deadd-notification-center'", ]; -shadow = true; +shadow = false; shadow-radius = 5; shadow-opacity = 0.4 shadow-offset-x = -1; diff --git a/home/pure_emacs/.emacs.d/init.el b/home/pure_emacs/.emacs.d/init.el index 821a439..d2b3597 100644 --- a/home/pure_emacs/.emacs.d/init.el +++ b/home/pure_emacs/.emacs.d/init.el @@ -347,42 +347,7 @@ -(use-package org-bullets - :after org - :hook - (org-mode . org-bullets-mode)) -(set-face-attribute 'org-document-title nil :font "hack" :weight 'bold :height 1.3) -(dolist (face '((org-level-1 . 1.3) - (org-level-2 . 1.2) - (org-level-3 . 1.05) - (org-level-4 . 1.0) - (org-level-5 . 1.1) - (org-level-6 . 1.1) - (org-level-7 . 1.1) - (org-level-8 . 1.1))) - (set-face-attribute (car face) nil :font "hack" :weight 'bold :height (cdr face))) -(require 'org-indent) -(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch :font "mononoki" ) -(set-face-attribute 'org-table nil :inherit 'fixed-pitch) -(set-face-attribute 'org-formula nil :inherit 'fixed-pitch) -(set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch)) -(set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)) -(set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch)) -(set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch)) -(set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-face fixed-pitch)) -(set-face-attribute 'org-checkbox nil :inherit 'fixed-pitch) -;; Get rid of the background on column views -(set-face-attribute 'org-column nil :background nil) -(set-face-attribute 'org-column-title nil :background nil) -(setq org-src-fontify-natively t) -(defun my/visual-fill () - (setq visual-fill-column-width 140 - visual-fill-column-center-text t) - (visual-fill-column-mode 1)) -(use-package visual-fill-column - :defer t - :hook (org-mode . my/visual-fill)) (defun my/org-mode-setup() (org-indend-mode) (variable-pitch-mode 1) @@ -486,3 +451,40 @@ :general (general-nmap :prefix "SPC a" :keymap 'org-agenda-mode-map "a" 'org-agenda)) +(use-package org-bullets + :after org + :hook + (org-mode . org-bullets-mode)) + +(set-face-attribute 'org-document-title nil :font "hack" :weight 'bold :height 1.3) +(dolist (face '((org-level-1 . 1.3) + (org-level-2 . 1.2) + (org-level-3 . 1.05) + (org-level-4 . 1.0) + (org-level-5 . 1.1) + (org-level-6 . 1.1) + (org-level-7 . 1.1) + (org-level-8 . 1.1))) + (set-face-attribute (car face) nil :font "hack" :weight 'bold :height (cdr face))) +(require 'org-indent) +(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch :font "mononoki" ) +(set-face-attribute 'org-table nil :inherit 'fixed-pitch) +(set-face-attribute 'org-formula nil :inherit 'fixed-pitch) +(set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch)) +(set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)) +(set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch)) +(set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch)) +(set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-face fixed-pitch)) +(set-face-attribute 'org-checkbox nil :inherit 'fixed-pitch) + +;; Get rid of the background on column views +(set-face-attribute 'org-column nil :background nil) +(set-face-attribute 'org-column-title nil :background nil) +(setq org-src-fontify-natively t) +(defun my/visual-fill () + (setq visual-fill-column-width 140 + visual-fill-column-center-text t) + (visual-fill-column-mode 1)) +(use-package visual-fill-column + :defer t + :hook (org-mode . my/visual-fill)) diff --git a/home/tmux/.config/tmux/plugins/tmux-gruvbox b/home/tmux/.config/tmux/plugins/tmux-gruvbox deleted file mode 160000 index ccab926..0000000 --- a/home/tmux/.config/tmux/plugins/tmux-gruvbox +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ccab926b566560b0138c6fee86985f2dfc21454a diff --git a/home/tmux/.config/tmux/plugins/tmux-sensible b/home/tmux/.config/tmux/plugins/tmux-sensible deleted file mode 160000 index e91b178..0000000 --- a/home/tmux/.config/tmux/plugins/tmux-sensible +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e91b178ff832b7bcbbf4d99d9f467f63fd1b76b5 diff --git a/home/tmux/.config/tmux/plugins/tpm b/home/tmux/.config/tmux/plugins/tpm deleted file mode 160000 index 60a36d6..0000000 --- a/home/tmux/.config/tmux/plugins/tpm +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 60a36d6f7adddfb68d68349dce3081e7d5c4d4ab diff --git a/install.sh b/install.sh index a365be5..7435604 100755 --- a/install.sh +++ b/install.sh @@ -33,3 +33,7 @@ git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zs git clone https://github.com/elkowar/eww /tmp/eww cd /tmp/eww cargo build --release + +echo "installing tmp (tmux package manager)" +git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm +