From a05c13009de0c8ed26895309fab45c9796ae9ca2 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 28 Jul 2022 02:38:30 +0300 Subject: [PATCH] Add colorizer --- .config/alacritty/alacritty.yml | 3 +++ .config/awesome/rc.lua | 16 ++++++++++------ .config/btop/btop.conf | 2 +- .config/nvim/init.vim | 1 + .config/zsh/.zshenv | 1 + 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 73a98529..bfb0d213 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -871,3 +871,6 @@ key_bindings: # Print all received window events. #print_events: false + +import: + - ~/.config/alacritty/dracula.yml diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 9a48240e..bd17f676 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -573,17 +573,21 @@ awful.rules.rules = { }, properties = { titlebars_enabled = false } }, + { + rule_any = { + class = { "tuxedo-control-center", "corectrl" } + }, properties = { screen = 1, tag = "7" } + }, { rule_any = { class = { "Thunderbird", "discord", "ripcord", "TelegramDesktop" } }, properties = { screen = 1, tag = "8" } }, - { - rule_any = { - class = { "spotify", "Spotify", "corectrl" }, - name = { "Spotify", "CoreCtrl" } - }, properties = { screen = 1, tag = "9" } - }, + { + rule_any = { + class = { "spotify", "Spotify" }, + }, properties = { screen = 1, tag = "9" } + }, -- Set Firefox to always map on the tag named "2" on screen 1. -- { rule = { class = "Firefox" }, diff --git a/.config/btop/btop.conf b/.config/btop/btop.conf index 64078acc..7834f86b 100644 --- a/.config/btop/btop.conf +++ b/.config/btop/btop.conf @@ -54,7 +54,7 @@ update_ms = 1000 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. -proc_sorting = "memory" +proc_sorting = "cpu direct" #* Reverse sorting order, True or False. proc_reversed = False diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index eaaefef2..e8bcc5e0 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -128,6 +128,7 @@ nnoremap fh Telescope help_tags lua << END require('gitsigns').setup() require('Comment').setup() +require 'colorizer'.setup() require("nvim-lsp-installer").setup({ automatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig) ui = { diff --git a/.config/zsh/.zshenv b/.config/zsh/.zshenv index 9997065d..ca638a04 100644 --- a/.config/zsh/.zshenv +++ b/.config/zsh/.zshenv @@ -3,6 +3,7 @@ typeset -U PATH path # Disable files export LESSHISTFILE=- +export $(dbus-launch) # Default Apps export EDITOR="nvim"