asdf
This commit is contained in:
parent
05a37d70dd
commit
9665c2e125
1 changed files with 46 additions and 41 deletions
|
@ -539,6 +539,7 @@ Cause emacs overlay lol
|
|||
(setq dashboard-image-banner-max-width 300)
|
||||
|
||||
(setq dashboard-page-separator "\n\n")
|
||||
(setq initial-buffer-choice (lambda () (get-buffer "*dashboard*")))
|
||||
(dashboard-setup-startup-hook))
|
||||
#+end_src
|
||||
** Evil Mode (vim)
|
||||
|
@ -1320,11 +1321,11 @@ RELEASE ME
|
|||
(use-package exwm
|
||||
:config
|
||||
|
||||
;; background
|
||||
;; todo turn this info a function
|
||||
(add-hook 'exwm-init-hook (lambda ()
|
||||
(defun sakomacs/exwm-init-hook ()
|
||||
;; background
|
||||
(call-process-shell-command "feh --bg-fill ~/background.png" nil 0)
|
||||
(set-frame-parameter (selected-frame)'alpha '(90 . 90))
|
||||
(add-to-list 'default-frame-alist '(alpha . (90 . 90)))
|
||||
(call-process-shell-command "~/.config/polybar/startpolybar" nil 0)
|
||||
;; todo fix picom
|
||||
;; (call-process-shell-command "~/.config/picom/startpicom" nil 0)
|
||||
|
@ -1334,7 +1335,11 @@ RELEASE ME
|
|||
(call-process-shell-command "nextcloud" nil 0)
|
||||
(call-process-shell-command "bitwarden" nil 0)
|
||||
(call-process-shell-command "flameshot" nil 0)
|
||||
))
|
||||
)
|
||||
|
||||
;; background
|
||||
;; todo turn this info a function
|
||||
(add-hook 'exwm-init-hook 'sakomacs/exwm-init-hook)
|
||||
;; startup
|
||||
;; workspaces
|
||||
(setq exwm-workspace-number 5)
|
||||
|
|
Loading…
Reference in a new issue