mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-10 18:11:13 +10:00
Minor alterations.
This commit is contained in:
@@ -177,3 +177,8 @@ source ~/.bash-powerline.sh
|
|||||||
|
|
||||||
### BROOT ###
|
### BROOT ###
|
||||||
source /home/dt/.config/broot/launcher/bash/br
|
source /home/dt/.config/broot/launcher/bash/br
|
||||||
|
|
||||||
|
### BASH INSULTER ###
|
||||||
|
if [ -f /etc/bash.command-not-found ]; then
|
||||||
|
. /etc/bash.command-not-found
|
||||||
|
fi
|
||||||
|
|||||||
@@ -290,8 +290,8 @@ colors:
|
|||||||
#
|
#
|
||||||
# Window opacity as a floating point number from `0.0` to `1.0`.
|
# Window opacity as a floating point number from `0.0` to `1.0`.
|
||||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||||
# background_opacity: 1.0
|
background_opacity: 1.0
|
||||||
background_opacity: 0.95
|
# background_opacity: 0.95
|
||||||
|
|
||||||
#selection:
|
#selection:
|
||||||
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ opacity-rule = [ "99:name *?= 'Call'",
|
|||||||
"95:name *?= 'nmon'",
|
"95:name *?= 'nmon'",
|
||||||
"95:name *?= 'httping'",
|
"95:name *?= 'httping'",
|
||||||
"96:name *?= 'xmobar'",
|
"96:name *?= 'xmobar'",
|
||||||
"96:class_g *?= 'emacs'",
|
"100:class_g *?= 'emacs'",
|
||||||
"95:class_g *?= 'surf' && name *?='suckless.org'",
|
"95:class_g *?= 'surf' && name *?='suckless.org'",
|
||||||
"95:class_g *?= 'tabbed'",
|
"95:class_g *?= 'tabbed'",
|
||||||
"95:name *?= 'newsboat'",
|
"95:name *?= 'newsboat'",
|
||||||
|
|||||||
@@ -11,9 +11,12 @@
|
|||||||
declare options=("alacritty
|
declare options=("alacritty
|
||||||
awesome
|
awesome
|
||||||
bash
|
bash
|
||||||
|
broot
|
||||||
bspwm
|
bspwm
|
||||||
|
compton
|
||||||
doom.d/config.el
|
doom.d/config.el
|
||||||
doom.d/init.el
|
doom.d/init.el
|
||||||
|
dunst
|
||||||
dwm
|
dwm
|
||||||
emacs.d/init.el
|
emacs.d/init.el
|
||||||
herbstluftwm
|
herbstluftwm
|
||||||
@@ -23,13 +26,16 @@ qtile
|
|||||||
st
|
st
|
||||||
stumpwm
|
stumpwm
|
||||||
sxhkd
|
sxhkd
|
||||||
|
termite
|
||||||
|
vifm
|
||||||
vim
|
vim
|
||||||
xmobar
|
xmobar
|
||||||
xmonad
|
xmonad
|
||||||
|
xresources
|
||||||
zsh
|
zsh
|
||||||
quit")
|
quit")
|
||||||
|
|
||||||
choice=$(echo -e "${options[@]}" | dmenu -i -p 'Edit a config file: ')
|
choice=$(echo -e "${options[@]}" | dmenu -i -p 'Edit config file: ')
|
||||||
|
|
||||||
case "$choice" in
|
case "$choice" in
|
||||||
quit)
|
quit)
|
||||||
@@ -44,15 +50,24 @@ case "$choice" in
|
|||||||
bash)
|
bash)
|
||||||
choice="$HOME/.bashrc"
|
choice="$HOME/.bashrc"
|
||||||
;;
|
;;
|
||||||
|
broot)
|
||||||
|
choice="$HOME/.config/broot/conf.toml"
|
||||||
|
;;
|
||||||
bspwm)
|
bspwm)
|
||||||
choice="$HOME/.config/bspwm/bspwmrc"
|
choice="$HOME/.config/bspwm/bspwmrc"
|
||||||
;;
|
;;
|
||||||
|
compton)
|
||||||
|
choice="$HOME/.config/compton/compton.conf"
|
||||||
|
;;
|
||||||
doom.d/config.el)
|
doom.d/config.el)
|
||||||
choice="$HOME/.doom.d/config.el"
|
choice="$HOME/.doom.d/config.el"
|
||||||
;;
|
;;
|
||||||
doom.d/init.el)
|
doom.d/init.el)
|
||||||
choice="$HOME/.doom.d/init.el"
|
choice="$HOME/.doom.d/init.el"
|
||||||
;;
|
;;
|
||||||
|
dunst)
|
||||||
|
choice="$HOME/.config/dunst/dunstrc"
|
||||||
|
;;
|
||||||
dwm)
|
dwm)
|
||||||
choice="$HOME/dwm/config.h"
|
choice="$HOME/dwm/config.h"
|
||||||
;;
|
;;
|
||||||
@@ -80,6 +95,12 @@ case "$choice" in
|
|||||||
sxhkd)
|
sxhkd)
|
||||||
choice="$HOME/.config/sxhkd/sxhkdrc"
|
choice="$HOME/.config/sxhkd/sxhkdrc"
|
||||||
;;
|
;;
|
||||||
|
termite)
|
||||||
|
choice="$HOME/.config/termite/config"
|
||||||
|
;;
|
||||||
|
vifm)
|
||||||
|
choice="$HOME/.config/vifm/vifmrc"
|
||||||
|
;;
|
||||||
vim)
|
vim)
|
||||||
choice="$HOME/.vimrc"
|
choice="$HOME/.vimrc"
|
||||||
;;
|
;;
|
||||||
@@ -89,6 +110,9 @@ case "$choice" in
|
|||||||
xmonad)
|
xmonad)
|
||||||
choice="$HOME/.xmonad/xmonad.hs"
|
choice="$HOME/.xmonad/xmonad.hs"
|
||||||
;;
|
;;
|
||||||
|
xresources)
|
||||||
|
choice="$HOME/.Xresources"
|
||||||
|
;;
|
||||||
zsh)
|
zsh)
|
||||||
choice="$HOME/.zshrc"
|
choice="$HOME/.zshrc"
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -111,10 +111,7 @@ let NERDTreeMinimalUI = 1
|
|||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => Colors
|
" => Colors
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
hi LineNr ctermfg=242
|
colo default
|
||||||
hi CursorLineNr ctermfg=15
|
|
||||||
hi VertSplit ctermfg=8 ctermbg=0
|
|
||||||
hi Statement ctermfg=3
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => Mouse Scrolling
|
" => Mouse Scrolling
|
||||||
|
|||||||
Reference in New Issue
Block a user