43 lines
1015 B
Org Mode
43 lines
1015 B
Org Mode
#+TITLE: Personal EWW Configuration
|
|
#+AUTHOR: Sravan Balaji
|
|
#+AUTO_TANGLE: t
|
|
#+STARTUP: showeverything
|
|
|
|
* Table of Contents :TOC_3:noexport:
|
|
- [[#welcome][Welcome]]
|
|
- [[#dwm-bar][DWM bar]]
|
|
- [[#styling][Styling]]
|
|
|
|
* Welcome
|
|
|
|
My personal configuration of EWW, written as an [[https://orgmode.org][Org Mode]] document.
|
|
|
|
Run the block below with ~C-c C-c~ to tangle code blocks to config file.
|
|
|
|
#+BEGIN_SRC emacs-lisp :tangle no
|
|
(org-mode-restart)
|
|
(org-babel-tangle)
|
|
#+END_SRC
|
|
|
|
* DWM bar
|
|
|
|
#+BEGIN_SRC yuck :tangle eww.yuck
|
|
(defwindow dwm-bar
|
|
:monitor "<primary>"
|
|
:geometry (geometry :x "0px"
|
|
:y "0px"
|
|
:width "100%"
|
|
:height "20px"
|
|
:anchor "top center")
|
|
:stacking "fg"
|
|
:reserve (struts :distance "0px" :side "top")
|
|
:windowtype "dock"
|
|
:wm-ignore false
|
|
"dwm bar")
|
|
#+END_SRC
|
|
|
|
* Styling
|
|
|
|
#+BEGIN_SRC scss :tangle eww.scss
|
|
#+END_SRC
|