Compare commits

...

5 Commits

Author SHA1 Message Date
Augusto Gunsch 71a8a1f2f1 Add ssh config 2022-04-10 15:46:10 -03:00
Augusto Gunsch ed9a2c9440 Consistent ls colors 2022-04-10 15:45:24 -03:00
Augusto Gunsch 0e1fe7b840 Use batcat instead of cat 2022-04-10 15:45:04 -03:00
Augusto Gunsch e9badf48df Make whitespace stand out 2022-04-10 15:44:35 -03:00
Augusto Gunsch 7b951f6598 Disable wheel tag switching 2022-04-10 15:44:03 -03:00
5 changed files with 13 additions and 7 deletions

View File

@ -157,9 +157,9 @@ local taglist_buttons = gears.table.join(
if client.focus then
client.focus:toggle_tag(t)
end
end),
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
end)
--awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
--awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
)
local tasklist_buttons = gears.table.join(
@ -299,9 +299,9 @@ end)
-- {{{ Mouse bindings
root.buttons(gears.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
awful.button({ }, 3, function () mymainmenu:toggle() end)
--awful.button({ }, 4, awful.tag.viewnext),
--awful.button({ }, 5, awful.tag.viewprev)
))
-- }}}

View File

@ -12,7 +12,6 @@ colorscheme torte
set list
set listchars=tab:*·,lead,trail:~,extends:>,precedes:<
filetype indent off
hi Whitespace ctermfg=233
hi SignColumn ctermbg=233
hi DiffChange ctermbg=17
hi DiffDelete ctermbg=52 ctermfg=15

View File

@ -34,6 +34,9 @@ alias venv="source venv/bin/activate"
# search functions
alias grepa="grep -I -n --color=always -r --exclude-dir=venv --exclude-dir=node_modules"
# cat
alias cat="batcat -p --paging=never"
# pipe yd-dlp to mpv
ytmpv() {
yt-dlp -q -o - "$1" | mpv -

3
home/ssh/config Normal file
View File

@ -0,0 +1,3 @@
Host vps
User root
HostName augustogunsch.com

View File

@ -25,6 +25,7 @@ bindkey "^[[B" history-beginning-search-forward-end
export PROMPT='%B%F{63}[%F{68}%n@%m %F{white}%~%F{63}]$%b%f '
export LS_COLORS='di=1;94:ex=4;92:ln=3;96'
# aliases:
source ~/.aliases