Minor tweaks

lightmode
E. Almqvist 2 years ago
parent 67964f3c68
commit fccb3116e8
  1. 12
      doomemacs/.doom.d/custom.el
  2. 8
      doomemacs/.doom.d/init.el
  3. 6
      picom/.config/picom/picom.conf
  4. 6
      xmonad/.xmonad/bin/autostart.sh
  5. 5
      xmonad/.xmonad/xmonad.hs

@ -0,0 +1,12 @@
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages '(elcord)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)

@ -24,8 +24,8 @@
company ; the ultimate code completion backend company ; the ultimate code completion backend
;;helm ; the *other* search engine for love and life ;;helm ; the *other* search engine for love and life
;;ido ; the other *other* search engine... ;;ido ; the other *other* search engine...
;;ivy ; a search engine for love and life ivy ; a search engine for love and life
vertico ; the search engine of the future ;; vertico ; the search engine of the future
:ui :ui
;;deft ; notational velocity for Emacs ;;deft ; notational velocity for Emacs
@ -37,8 +37,8 @@
;;hydra ;;hydra
;;indent-guides ; highlighted indent columns ;;indent-guides ; highlighted indent columns
ligatures ; ligatures and symbols to make your code pretty again ligatures ; ligatures and symbols to make your code pretty again
minimap ; show a map of the code on the side ;; minimap ; show a map of the code on the side
modeline ; snazzy, Atom-inspired modeline, plus API ;; modeline ; snazzy, Atom-inspired modeline, plus API
;;nav-flash ; blink cursor line after big motions ;;nav-flash ; blink cursor line after big motions
neotree ; a project drawer, like NERDTree for vim neotree ; a project drawer, like NERDTree for vim
ophints ; highlight the region an operation acts on ophints ; highlight the region an operation acts on

@ -77,9 +77,9 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
# Parameters for background blurring, see the *BLUR* section for more information. # Parameters for background blurring, see the *BLUR* section for more information.
blur-method = "dual_kawase"; # blur-method = "dual_kawase";
blur-strength = 8; # blur-strength = 8;
blur-size = 2; # blur-size = 2;
# #

@ -22,7 +22,11 @@ xset -dpms &
#eww open bar #eww open bar
# Polybar # Polybar
$HOME/.config/polybar/launch & # $HOME/.config/polybar/launch &
# EWW widgets
eww daemon &
eww open-many bar-1 bar-2 & # the bar
# Keyring # Keyring
eval $(gnome-keyring-daemon --start) eval $(gnome-keyring-daemon --start)

@ -15,7 +15,7 @@ import qualified Data.Map as M
import XMonad.Hooks.EwmhDesktops (ewmh) import XMonad.Hooks.EwmhDesktops (ewmh)
import XMonad.Hooks.InsertPosition import XMonad.Hooks.InsertPosition
import XMonad.Layout.Fullscreen (fullscreenSupport) import XMonad.Layout.Fullscreen (fullscreenSupport)
import XMonad.Layout.IndependentScreens (withScreens) -- import XMonad.Layout.IndependentScreens (withScreens)
import XMonad.Layout.ToggleLayouts (ToggleLayout(Toggle)) import XMonad.Layout.ToggleLayouts (ToggleLayout(Toggle))
import qualified XMonad.StackSet as W import qualified XMonad.StackSet as W
import XMonad.Util.Run (spawnPipe) import XMonad.Util.Run (spawnPipe)
@ -56,6 +56,7 @@ myModMask = mod4Mask
-- --
-- > workspaces = ["web", "irc", "code" ] ++ map show [4..9] -- > workspaces = ["web", "irc", "code" ] ++ map show [4..9]
-- --
-- myWorkspaces = map show [1 .. 9]
myWorkspaces = map show [1..9] myWorkspaces = map show [1..9]
-- Border colors for unfocused and focused windows, respectively. -- Border colors for unfocused and focused windows, respectively.
@ -263,7 +264,7 @@ defaults =
, clickJustFocuses = myClickJustFocuses , clickJustFocuses = myClickJustFocuses
, borderWidth = myBorderWidth , borderWidth = myBorderWidth
, modMask = myModMask , modMask = myModMask
, workspaces = withScreens 2 myWorkspaces , workspaces = myWorkspaces
, normalBorderColor = myNormalBorderColor , normalBorderColor = myNormalBorderColor
, focusedBorderColor = myFocusedBorderColor , focusedBorderColor = myFocusedBorderColor
-- key bindings -- key bindings

Loading…
Cancel
Save