dotfiles

Configs for programs I use!
git clone git://shipwreckt.co.uk/dotfiles.git
Log | Files | Refs | README | LICENSE

picom.conf (1696B)


      1  # _____ _                                        __ _
      2  #|  __ (_)                                      / _(_)
      3  #| |__) |  ___ ___  _ __ ___     ___ ___  _ __ | |_ _  __ _
      4  #|  ___/ |/ __/ _ \| '_ ` _ \   / __/ _ \| '_ \|  _| |/ _` |
      5  #| |   | | (_| (_) | | | | | | | (_| (_) | | | | | | | (_| |
      6  #|_|   |_|\___\___/|_| |_| |_|  \___\___/|_| |_|_| |_|\__, |
      7  #                                                      __/ |
      8  #                                                     |___/
      9 
     10 # Shadow
     11 shadow = true;
     12 shadow-radius = 12;
     13 shadow-offset-x = -7;
     14 shadow-offset-y = -7;
     15 shadow-exclude = [
     16   "name = 'Notification'",
     17   "class_g = 'Conky'",
     18   "class_g ?= 'Notify-osd'",
     19   "class_g = 'Cairo-clock'",
     20   "_GTK_FRAME_EXTENTS@:c"
     21 ];
     22 
     23 
     24 # Fading
     25 fading = true;
     26 fade-in-step = 0.04;
     27 fade-out-step = 0.06;
     28 fade-delta = 20
     29 
     30 
     31 # Transparency / Opacity
     32 inactive-opacity = 1;
     33 frame-opacity = 1.0;
     34 inactive-opacity-override = false;
     35 active-opacity = 1.0
     36 focus-exclude = [ "class_g = 'Cairo-clock'" ];
     37 
     38 opacity-rule = [ 
     39 "90:class_g = 'st-256color'",
     40 ]
     41 
     42 
     43 # Corners
     44 
     45 corner-radius = 5
     46 rounded-corners-exclude = [
     47   "window_type = 'dock'",
     48   "class_g = 'dwm'",  
     49   "window_type = 'desktop'"
     50 ];
     51 
     52 
     53 
     54 # General Settings
     55 
     56 backend = "glx"
     57 vsync = true;
     58 mark-wmwin-focused = true;
     59 mark-ovredir-focused = true;
     60 detect-rounded-corners = true;
     61 detect-client-opacity = true;
     62 detect-transient = true;
     63 glx-no-stencil = true;
     64 use-damage = true;
     65 log-level = "warn";
     66 wintypes:
     67 {
     68   tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
     69   dock = { shadow = false; clip-shadow-above = true; }
     70   dnd = { shadow = false; }
     71   popup_menu = { opacity = 0.8; }
     72   dropdown_menu = { opacity = 0.8; }
     73 };