This commit is contained in:
2023-05-24 15:04:51 +09:00
parent fbfb37e3a9
commit e9a7cf98e1
4 changed files with 14 additions and 4 deletions

View File

@ -14,6 +14,9 @@ killall volumeicon && volumeicon &
#sleep 3 && conky -c ~/.config/conky/conkyrc
~/scripts/random_wallpaper.sh
wmname LG3D
export _JAVA_AWT_WM_NONREPARETING=1
bspc monitor -d 1 2 3 4 5
bspc config border_width 2

View File

@ -44,7 +44,8 @@
;; Org setup
(setq custom-org-directory "~/org"
custom-org-agenda-files "~/org/agenda/agenda.org")
custom-org-roam-directory "~/org/roam"
custom-org-agenda-file "~/org/agenda/agenda.org")
;; Chatgpt setup
(setq custom-chatgpt-my-key "my-key")

View File

@ -115,7 +115,7 @@ prepended to the element after the #+HEADER: tag."
(?C . success))
;; Agenda styling
org-agenda-files (list custom-org-agenda-files)
org-agenda-files (list custom-org-agenda-file)
org-agenda-block-separator ?─
org-agenda-start-with-log-mode t
org-agenda-time-grid
@ -318,9 +318,8 @@ prepended to the element after the #+HEADER: tag."
; org-roam ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(use-package org-roam
:demand t ;; ensure org-roam is loaded by default
:hook (after-init . (my/org-roam-refresh-agenda-list))
:custom
(org-roam-directory "~/org/roam")
(org-roam-directory custom-org-roam-directory)
(org-roam-node-display-template (concat "${title:*} " (propertize "${tags:*}" 'face 'org-tag)))
;;(org-roam-completion-everywhere t)
:config

View File

@ -58,6 +58,13 @@ git clone https://git.jaeus.net/walls
# Fonts
##################################################
paru -S ttf-firacode-nerd ttf-momonoki-nerd ttf-times-new-roman ttf-nanum noto-fonts-emoji ttf-symbola noto-font-cjk --noconfirm
##################################################
# Window Manager
##################################################
paru -S bspwm sxhkd polybar --noconfirm
paru -S wmname --noconfirm
##################################################
# EMACS Related