From 33d9dda3005810583086f3267103637e78089697 Mon Sep 17 00:00:00 2001 From: ziro Date: Sun, 26 Jul 2020 15:27:04 +0700 Subject: [PATCH] + Removed st transparency --- .config/Xresources | 4 +- .config/bspwm/bspwmrc | 3 +- .config/picom/picom.conf | 79 ++++++++++++++++++++++++++++++++++++++++ .config/vim/vim_plug | 1 + 4 files changed, 84 insertions(+), 3 deletions(-) create mode 100644 .config/picom/picom.conf diff --git a/.config/Xresources b/.config/Xresources index 44ce439..dcda121 100644 --- a/.config/Xresources +++ b/.config/Xresources @@ -45,7 +45,7 @@ st*font: Iosevka Nerd Font:size=10:antialias=true:autohint=true st*font2: Twemoji:size=8:antialias=true:autohint=true st*depth: 32 st*bold_font: 0 -st*background: #1d1f21 +st*background: #2A3039 st*foreground: #f5f6fa st*cursorColor: #8d9b53 st*termname: st-256color @@ -71,7 +71,7 @@ st*color6: #487eb0 st*color14: #40739e st*color7: #f5f6fa st*color15: #c5c8c6 -st*alpha: 0.9 +st*alpha: 1 !! Rofi !config diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index 6403faf..3b53a5b 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -11,7 +11,7 @@ bspc monitor -d 1 2 3 4 5 6 7 8 9 10 primaryB = "#60C0FF" -bspc config border_width 2 +bspc config border_width 1 bspc config focused_border_color "#60C0FF" #bspc config normal_border_color $BORDER_NORMAL_COLOR #bspc config active_border_color $BORDER_NORMAL_COLOR @@ -56,6 +56,7 @@ bspc rule -a steam desktop='^6' bspc rule -a gravitdesigner desktop='^8' state=floating bspc rule -a GravitDesigner desktop='^8' state=floating bspc rule -a electronplayer desktop='^3' +bspc rule -a Minecraft* desktop='^6' state=monocle bspc rule -a mcpelauncher-client desktop='^6' state=monocle bspc rule -a citra-qt desktop='^6' bspc rule -a Citra desktop='^6' diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf new file mode 100644 index 0000000..836fd10 --- /dev/null +++ b/.config/picom/picom.conf @@ -0,0 +1,79 @@ +shadow = true; +detect-rounded-corners = true; +shadow-radius = 5; +shadow-offset-x = 1; +shadow-offset-y = 1; +shadow-opacity = 0.3; +shadow-ignore-shaped = false; +shadow-exclude = [ "name = 'Notification'", "override_redirect = 1 && !WM_CLASS@:s", "class_g ?= 'Dmenu'", "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", "_GTK_FRAME_EXTENTS@:c", "class_g ?= 'i3-frame'", "class_g ?= 'trayer'", "class_g ?= 'tray'", "class_g ?= 'Polybar'", "class_g ?= 'polybar'", "class_g ?= 'rofi'", "class_g ?= 'dwm'" ]; +#menu-opacity = 1.0; +inactive-opacity = 1.0; +active-opacity = 1; +#alpha-step = 0.01; +inactive-dim = 0.0; +blur-background = false; +blur-kern = "3x3box"; +fading = true; +fade-delta = 1; +fade-in-step = 0.03; +fade-out-step = 0.03; +fade-exclude = [ ]; +backend = "xrender"; +mark-wmwin-focused = true; +mark-ovredir-focused = true; +detect-client-opacity = true; +unredir-if-possible = true; +refresh-rate = 60; +vsync = true; +dbe = false; +focus-exclude = [ "class_g = 'Cairo-clock'" ]; +detect-transient = true; +detect-client-leader = true; +invert-color-include = [ ]; +glx-copy-from-front = false; +#glx-swap-method = "undefined"; +use-damage = true; +opacity-rule = [ "99:name *?= 'Call'", +"95:name *?= 'Lynx'", +"95:name *?= 'nmon'", +"95:name *?= 'httping'", +"50:class_g *?= 'org-fenix-llanfair-Llanfair'", +"50:class_g *?= 'livesplit-one'", +"90:class_g *?= 'conky'", +"90:class_g *?= 'thunar'", +"100:class_g *?= 'Steam'", +"100:class_g *?= 'st' && !_NET_WM_STATE@:32a", +"90:class_g *?= 'atom'", +"96:class_g *?= 'emacs'", +"100:class_g *?= 'polybar' && class_g *?= 'Polybar'", +"95:class_g *?= 'surf' && name *?='suckless.org'", +"95:class_g *?= 'tabbed'", +"100:class_g = 'XTerm' && !_NET_WM_STATE@:32a", +"100:class_g = 'URxvt' && !_NET_WM_STATE@:32a", +"90:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", +"96:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'" ]; +wintypes : +{ + tooltip : + { + fade = true; + shadow = false; + opacity = 0.85; + focus = true; + }; + fullscreen : + { + fade = true; + shadow = false; + opacity = 1; + focus = true; + }; + popup_menu : + { + opacity = 1.0 + }; + dropdown_menu : + { + opacity = 1.0 + }; +}; diff --git a/.config/vim/vim_plug b/.config/vim/vim_plug index b5122f9..0745841 100644 --- a/.config/vim/vim_plug +++ b/.config/vim/vim_plug @@ -43,6 +43,7 @@ Plug 'tpope/vim-commentary' Plug 'hugolgst/vimsence' " Plug 'vbe0201/vimdiscord' " Plug 'neoclide/coc.nvim', {'branch': 'release'} +Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } call plug#end()