Move all config files outside or dotfiles folder
This commit is contained in:
72
compositor.org
Normal file
72
compositor.org
Normal file
@@ -0,0 +1,72 @@
|
||||
#+TITLE: Picom (Compositor)
|
||||
:DRAWER:
|
||||
#+STARTUP: overview
|
||||
|
||||
#+LANGUAGE: en
|
||||
#+EMAIL: dehaeze.thomas@gmail.com
|
||||
#+AUTHOR: Dehaeze Thomas
|
||||
|
||||
#+HTML_LINK_HOME: ./index.html
|
||||
#+HTML_LINK_UP: ./index.html
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.stickytableheaders.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="./js/readtheorg.js"></script>
|
||||
|
||||
#+PROPERTY: header-args :tangle ~/.config/picom/picom.conf
|
||||
#+PROPERTY: header-args+ :comments both :mkdirp yes
|
||||
:END:
|
||||
|
||||
* Shadow
|
||||
#+BEGIN_SRC conf
|
||||
shadow = true;
|
||||
shadow-radius = 12;
|
||||
shadow-offset-x = -12;
|
||||
shadow-offset-y = -12;
|
||||
shadow-exclude = [
|
||||
"name = 'Notification'",
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'dnd'",
|
||||
"class_g = 'VirtualBox'",
|
||||
"class_g ?= 'Notify-osd'",
|
||||
"name = 'cpt_frame_window'", # For zoom problem when sharing screen
|
||||
"class_g = 'stalonetray'"
|
||||
];
|
||||
#+END_SRC
|
||||
|
||||
* Opacity
|
||||
#+BEGIN_SRC conf
|
||||
inactive-opacity = 1.0;
|
||||
frame-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
#+END_SRC
|
||||
|
||||
* Fading
|
||||
#+BEGIN_SRC conf
|
||||
fading = false;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.03;
|
||||
#+END_SRC
|
||||
|
||||
* Other
|
||||
#+BEGIN_SRC conf
|
||||
backend = "xrender";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
#+END_SRC
|
||||
|
||||
* Window Type Setting
|
||||
#+begin_src conf
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { fade = true; shadow = true; focus = true; full-shadow = false; };
|
||||
dock = { shadow = false; }
|
||||
dnd = { shadow = false; }
|
||||
};
|
||||
#+end_src
|
||||
Reference in New Issue
Block a user