mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2023-02-13 20:55:19 -05:00
Minor changes.
This commit is contained in:
parent
2e8ec24633
commit
9bd8cf7b16
8 changed files with 17 additions and 11 deletions
|
@ -15,7 +15,7 @@ Xft.lcdfilter: lcdfilter
|
|||
|
||||
XTerm*renderFont: true
|
||||
XTerm*faceName: xft:Mononoki Nerd Font
|
||||
XTerm*faceSize: 12
|
||||
XTerm*faceSize: 11
|
||||
XTerm*utf8: 2
|
||||
XTerm*locale: true
|
||||
|
||||
|
@ -83,7 +83,8 @@ XTerm*background: #292d3e
|
|||
XTerm*cursorColor: #bbc5ff
|
||||
|
||||
! black
|
||||
*.color0: #101010 !! originally #292d3e
|
||||
!! color0 was originally #292d3e
|
||||
*.color0: #101010
|
||||
*.color8: #434758
|
||||
|
||||
! red
|
||||
|
|
2
.bashrc
2
.bashrc
|
@ -7,7 +7,7 @@
|
|||
# My bash config. Not much to see here. Some pretty standard stuff.
|
||||
|
||||
EDITOR="emacsclient -c"
|
||||
export TERM="st-256color"
|
||||
export TERM="xterm-256color"
|
||||
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
|
|||
if awesome.startup_errors then
|
||||
naughty.notify({ preset = naughty.config.presets.critical,
|
||||
title = "Oops, there were errors during startup!",
|
||||
text = awesome.startup_errors })
|
||||
text = awesome.startup_errors })((
|
||||
end
|
||||
|
||||
-- Handle runtime errors after startup
|
||||
|
|
|
@ -43,7 +43,7 @@ opacity-rule = [ "99:name *?= 'Call'",
|
|||
"95:class_g *?= 'tabbed'",
|
||||
"95:name *?= 'newsboat'",
|
||||
"100:class_g = 'XTerm' && !_NET_WM_STATE@:32a",
|
||||
"95:class_g = 'URxvt' && !_NET_WM_STATE@:32a",
|
||||
"100:class_g = 'URxvt' && !_NET_WM_STATE@:32a",
|
||||
"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"96:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'" ];
|
||||
wintypes :
|
||||
|
|
|
@ -24,8 +24,7 @@
|
|||
|
||||
nowplaying=`deadbeef --nowplaying "%n %a - %t - %b - %y" | sed -n '1p' | tr -d '"'`
|
||||
tracktime=`deadbeef --nowplaying "%l" | sed -n '1p'`
|
||||
playlist_dir=`/home/derek/.config/deadbeef/playlists/`
|
||||
playlist_num=`ls -l /home/derek/.config/deadbeef/playlists/* | wc -l | sed -n '1p'`
|
||||
playlist_num=`ls -l /home/dt/.config/deadbeef/playlists/* | wc -l | sed -n '1p'`
|
||||
|
||||
echo "<openbox_pipe_menu>"
|
||||
echo "<menu id=\"root-menu-325671\" label=\""Track Info"\">"
|
||||
|
@ -35,7 +34,7 @@ echo "<separator/>"
|
|||
echo "<item label=\"Open Music Player\"><action name=\"Execute\"><execute>deadbeef</execute></action></item>"
|
||||
echo "</menu>"
|
||||
echo "<menu id=\"root-menu-325676\" label=\"Playlists ($playlist_num)\">"
|
||||
for file in $(ls /home/derek/.config/deadbeef/playlists/*.dbpl -1v); do
|
||||
for file in $(ls /home/dt/.config/deadbeef/playlists/*.dbpl -1v); do
|
||||
NAME=$(echo "$file" | rev | cut -d"/" -f1 | rev)
|
||||
echo "<item label=\"$NAME\"><action name=\"Execute\"><execute>deadbeef $file</execute></action></item>"
|
||||
done
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
'Active' - where the active window is -->
|
||||
</placement>
|
||||
<theme>
|
||||
<name>Mabox-superdesk</name>
|
||||
<name>Adapta-Nokto</name>
|
||||
<titleLayout>CSIML</titleLayout>
|
||||
<!--
|
||||
available characters are NDSLIMC, each can occur at most once.
|
||||
|
|
|
@ -534,7 +534,7 @@ def init_mouse():
|
|||
|
||||
if __name__ in ["config", "__main__"]:
|
||||
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
||||
myTerm = "st" # My terminal of choice
|
||||
myTerm = "alacritty" # My terminal of choice
|
||||
myConfig = "/home/dt/.config/qtile/config.py" # Qtile config file location
|
||||
|
||||
colors = init_colors()
|
||||
|
|
8
.vimrc
8
.vimrc
|
@ -120,7 +120,7 @@ let g:minimap_toggle='<leader>mt'
|
|||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" => Colors
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" colorscheme nord
|
||||
colorscheme default
|
||||
hi LineNr ctermfg=242
|
||||
hi CursorLineNr ctermfg=15
|
||||
hi VertSplit ctermfg=8 ctermbg=0
|
||||
|
@ -154,3 +154,9 @@ set guioptions-=m "remove menu bar
|
|||
set guioptions-=T "remove toolbar
|
||||
set guioptions-=r "remove right-hand scroll bar
|
||||
set guioptions-=L "remove left-hand scroll bar
|
||||
|
||||
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" => Fixes mouse issues using Alacritty terminal
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
set ttymouse=sgr
|
||||
|
|
Loading…
Reference in a new issue