This commit is contained in:
Sakooooo 2024-02-09 08:36:06 +04:00
parent 05a37d70dd
commit 9665c2e125
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

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