Compare commits

..

No commits in common. "bae0b15aea0a5188dd6d165f46b8b444e551e192" and "ecabff30f51b19f31fd71920290265d1752cfb4e" have entirely different histories.

6 changed files with 4 additions and 67 deletions

View file

@ -1,8 +0,0 @@
profile {
output LVDS-1 enable
}
profile {
output HDMI-A-1 enable position 1366,0 scale 1
#output LVDS-1 enable position 0,312
output LVDS-1 disable
}

View file

@ -1,7 +1,6 @@
#!/bin/sh
. ~/.profile
. ~/.cache/themer.lua/shell
i3status | while true; do
read line
@ -11,9 +10,9 @@ i3status | while true; do
else
zeit="$(zeit tracking --no-colors)"
if echo "$zeit" | grep -F tracking >/dev/null; then
color="$accent"
color="#FF0000"
else
color="$foreground"
color="#000000"
fi
zeit_obj='{"name":"zeit","instance":"zeit","color":"'$color'","markup":"none","full_text":"'$zeit'"}'
json_array="$(echo $json_array | jq ". |= [$zeit_obj] + .")"

@ -1 +1 @@
Subproject commit 08f35148f1ef99c6cb0aa1feb69681e0a592b895
Subproject commit 53b2f5caad07178e75a85464f4e6e059685bced7

View file

@ -1,51 +0,0 @@
-- vis-minimal-theme (https://github.com/erf/vis-minimal-theme)
-- light by Erlend Lind Madsen
-- Modified by Nulo
local text = '#575279'
local subtle = '#797593'
local muted = '#9893a5'
local base = '#faf4ed'
local surface = '#fffaf3'
local overlay = '#f2e9e1'
local highlight_med = '#dfdad9'
local lexers = vis.lexers
lexers.STYLE_DEFAULT ='back:'..base..',fore:'..text
lexers.STYLE_NOTHING = 'back:'..base
lexers.STYLE_CLASS = 'fore:'..text
lexers.STYLE_COMMENT = 'fore:'..muted
lexers.STYLE_CONSTANT = 'fore:'..text
lexers.STYLE_DEFINITION = 'fore:'..text
lexers.STYLE_ERROR = 'fore:'..text
lexers.STYLE_FUNCTION = 'fore:'..text
lexers.STYLE_KEYWORD = 'fore:'..muted
lexers.STYLE_LABEL = 'fore:'..text
lexers.STYLE_NUMBER = 'fore:'..subtle
lexers.STYLE_OPERATOR = 'fore:'..text
lexers.STYLE_REGEX = 'fore:'..subtle
lexers.STYLE_STRING = 'fore:'..subtle
lexers.STYLE_PREPROCESSOR = 'fore:'..text
lexers.STYLE_TAG = 'fore:'..text
lexers.STYLE_TYPE = 'fore:'..text
lexers.STYLE_VARIABLE = 'fore:'..text
lexers.STYLE_WHITESPACE = ''
lexers.STYLE_EMBEDDED = 'back:'..overlay
lexers.STYLE_IDENTIFIER = 'fore:'..text
lexers.STYLE_LINENUMBER = 'fore:'..subtle
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
lexers.STYLE_CURSOR = 'back:'..muted
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle
lexers.STYLE_CURSOR_LINE = 'underlined'
lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med
lexers.STYLE_SELECTION = 'back:'..highlight_med
lexers.STYLE_STATUS = 'back:'..base..',fore:'..muted
lexers.STYLE_STATUS_FOCUSED = 'back:'..overlay..',fore:'..text
lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT
lexers.STYLE_INFO = 'fore:default,back:default'
lexers.STYLE_EOF = ''

View file

@ -11,7 +11,7 @@ plugins = {
local disable_formating = false
vis.events.subscribe(vis.events.INIT, function()
require 'themes/rose-pine-dawn-colorless'
require 'themes/minimal-light'
require 'plugins/commentary'
vis:map(vis.modes.NORMAL, ',f', ':fzf<Enter>')

3
.zshrc
View file

@ -47,7 +47,6 @@ alias gco='git checkout'
alias gl='git log'
alias gs='git status'
alias ga='git add'
alias gap='git add -p'
alias gt='git tag'
alias gp='git push'
alias gpo='git push origin' # Para tags: git push origin 1.0.2 / gpo 1.0.2
@ -56,9 +55,7 @@ alias gitdf='git --git-dir=$HOME/.config/dotfiles/ --work-tree=$HOME'
alias gd='gitdf'
alias gdc='gitdf commit'
alias gdcp='gitdf commit -p'
alias gdl='git log'
alias gda='gitdf add'
alias gdap='gitdf add -p'
alias gds='gitdf status'
alias gdp='gitdf push'