diff options
-rw-r--r-- | .config/XMonad/lib/Defaults.hs | 2 | ||||
-rw-r--r-- | .config/alacritty/font.yml | 2 | ||||
-rw-r--r-- | .config/alacritty/window.yml | 2 | ||||
-rw-r--r-- | .config/polybar/config.ini | 9 | ||||
-rw-r--r-- | .doom.d/custom.el | 2 | ||||
-rwxr-xr-x | .xprofile | 18 |
6 files changed, 21 insertions, 14 deletions
diff --git a/.config/XMonad/lib/Defaults.hs b/.config/XMonad/lib/Defaults.hs index 593e842..5f855d0 100644 --- a/.config/XMonad/lib/Defaults.hs +++ b/.config/XMonad/lib/Defaults.hs @@ -16,7 +16,7 @@ myBorder' = "#a663cc" -- myBorder' = "#1ca09d" myBorderWidth :: Dimension -myBorderWidth = 2 +myBorderWidth = 1 myFont = "xft:Sauce Code Pro:style=Regular:size=14" diff --git a/.config/alacritty/font.yml b/.config/alacritty/font.yml index 406be38..a410a02 100644 --- a/.config/alacritty/font.yml +++ b/.config/alacritty/font.yml @@ -16,7 +16,7 @@ font: style: Bold Italic # Point size - size: 9.0 + size: 8.0 offset: x: 0 diff --git a/.config/alacritty/window.yml b/.config/alacritty/window.yml index ddb8e47..d35f991 100644 --- a/.config/alacritty/window.yml +++ b/.config/alacritty/window.yml @@ -1,5 +1,5 @@ window: - opacity: 0.9 + opacity: 0.7 # Window dimensions (changes require restart) # # Number of lines/columns (not pixels) in the terminal. The number of columns diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini index 3764a85..b264ac2 100644 --- a/.config/polybar/config.ini +++ b/.config/polybar/config.ini @@ -18,7 +18,8 @@ [colors] ;background = #dd1e2120 -background = #e6100b13 +;background = #b3100b13 +background = #100b13 ; removing transparency because picom wont disable shadows with blur foreground = #FFFFFF ;systray-bg = #232627 @@ -36,7 +37,9 @@ module-color-1 = #fb6f92 ;module-color-0 = #1ca09d ;module-color-1 = #2be38f -module-bg = #e6100b13 + +;module-bg = #e6100b13 +module-bg = ${colors.background} module-bg-alt = ${colors.module-bg} ;xwindow-fg = #9d00ff @@ -116,7 +119,7 @@ tray-background = ${colors.systray-bg} monitor = ${env:MONITOR:HDMI-0} enable-ipc = true width = 1920 -height = 20 +height = 22 offset-x = 0 offset-y = 0 radius = 0 diff --git a/.doom.d/custom.el b/.doom.d/custom.el index 09fcca5..7f572db 100644 --- a/.doom.d/custom.el +++ b/.doom.d/custom.el @@ -28,7 +28,7 @@ '(line-number-current-line :slant normal)) ; window transparency -(add-to-list 'default-frame-alist '(alpha . 90)) +(add-to-list 'default-frame-alist '(alpha . 70)) ;; dashboard config @@ -14,18 +14,22 @@ emacs --daemon & mpd & #virtual_mic.sh & -# autostart apps for xmonad -if [[ $DESKTOP_SESSION = "xmonad" ]]; then +# autostart apps for both xmonad and dwm +if [[ "$DESKTOP_SESSION" = "xmonad" || "$DESKTOP_SESSION" = "dwm" ]]; then screensetup.sh # autostart apps nitrogen --restore & picom & - dunst & - udiskie & - nm-applet & - blueman-applet & - polystart & + #dunst & + #udiskie & # glava -dm radial & fi + +# autostart apps just for xmonad +if [[ "$DESKTOP_SESSION" = "xmonad" ]]; then + polystart & + nm-applet & + blueman-applet & +fi |