Compare commits
5 Commits
23bb1cd531
...
71a8a1f2f1
Author | SHA1 | Date |
---|---|---|
Augusto Gunsch | 71a8a1f2f1 | |
Augusto Gunsch | ed9a2c9440 | |
Augusto Gunsch | 0e1fe7b840 | |
Augusto Gunsch | e9badf48df | |
Augusto Gunsch | 7b951f6598 |
|
@ -157,9 +157,9 @@ local taglist_buttons = gears.table.join(
|
||||||
if client.focus then
|
if client.focus then
|
||||||
client.focus:toggle_tag(t)
|
client.focus:toggle_tag(t)
|
||||||
end
|
end
|
||||||
end),
|
end)
|
||||||
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
|
--awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
|
||||||
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
|
--awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
|
||||||
)
|
)
|
||||||
|
|
||||||
local tasklist_buttons = gears.table.join(
|
local tasklist_buttons = gears.table.join(
|
||||||
|
@ -299,9 +299,9 @@ end)
|
||||||
|
|
||||||
-- {{{ Mouse bindings
|
-- {{{ Mouse bindings
|
||||||
root.buttons(gears.table.join(
|
root.buttons(gears.table.join(
|
||||||
awful.button({ }, 3, function () mymainmenu:toggle() end),
|
awful.button({ }, 3, function () mymainmenu:toggle() end)
|
||||||
awful.button({ }, 4, awful.tag.viewnext),
|
--awful.button({ }, 4, awful.tag.viewnext),
|
||||||
awful.button({ }, 5, awful.tag.viewprev)
|
--awful.button({ }, 5, awful.tag.viewprev)
|
||||||
))
|
))
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@ colorscheme torte
|
||||||
set list
|
set list
|
||||||
set listchars=tab:*·,lead:·,trail:~,extends:>,precedes:<
|
set listchars=tab:*·,lead:·,trail:~,extends:>,precedes:<
|
||||||
filetype indent off
|
filetype indent off
|
||||||
hi Whitespace ctermfg=233
|
|
||||||
hi SignColumn ctermbg=233
|
hi SignColumn ctermbg=233
|
||||||
hi DiffChange ctermbg=17
|
hi DiffChange ctermbg=17
|
||||||
hi DiffDelete ctermbg=52 ctermfg=15
|
hi DiffDelete ctermbg=52 ctermfg=15
|
||||||
|
|
|
@ -34,6 +34,9 @@ alias venv="source venv/bin/activate"
|
||||||
# search functions
|
# search functions
|
||||||
alias grepa="grep -I -n --color=always -r --exclude-dir=venv --exclude-dir=node_modules"
|
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
|
# pipe yd-dlp to mpv
|
||||||
ytmpv() {
|
ytmpv() {
|
||||||
yt-dlp -q -o - "$1" | mpv -
|
yt-dlp -q -o - "$1" | mpv -
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Host vps
|
||||||
|
User root
|
||||||
|
HostName augustogunsch.com
|
|
@ -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 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:
|
# aliases:
|
||||||
source ~/.aliases
|
source ~/.aliases
|
||||||
|
|
Loading…
Reference in New Issue