Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
SingularisArt committed Sep 8, 2024
1 parent 11426f6 commit 7ab1dac
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aspects/dotfiles/files/.config/bashtop/bashtop.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ update_ms="2500"

#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive"
#* "cpu lazy" updates sorting over time, "cpu responsive" updates sorting directly
proc_sorting="cpu lazy"
proc_sorting="arguments"

#* Reverse sorting order, "true" or "false"
proc_reversed="false"
Expand Down
64 changes: 64 additions & 0 deletions aspects/dotfiles/files/.config/git/gitk
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
set mainfont {sans 9}
set textfont {monospace 9}
set uifont {sans 9 bold}
set tabstop 8
set findmergefiles 0
set maxgraphpct 50
set maxwidth 16
set cmitmode patch
set wrapcomment none
set autoselect 1
set autosellen 40
set showneartags 1
set maxrefs 20
set visiblerefs {"master"}
set hideremotes 0
set showlocalchanges 1
set datetimeformat {%Y-%m-%d %H:%M:%S}
set limitdiffs 1
set uicolor grey85
set want_ttk 1
set bgcolor white
set fgcolor black
set uifgcolor black
set uifgdisabledcolor #999
set colors {"#00ff00" red blue magenta darkgrey brown orange}
set diffcolors {"#c30000" "#009800" blue}
set mergecolors {red blue "#00ff00" purple brown "#009090" magenta "#808000" "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070" "#ff70b0"}
set markbgcolor #e0e0ff
set diffcontext 3
set selectbgcolor gray85
set foundbgcolor yellow
set currentsearchhitbgcolor orange
set extdifftool meld
set perfile_attrs 0
set headbgcolor #00ff00
set headfgcolor black
set headoutlinecolor black
set remotebgcolor #ffddaa
set tagbgcolor yellow
set tagfgcolor black
set tagoutlinecolor black
set reflinecolor black
set filesepbgcolor #aaaaaa
set filesepfgcolor black
set linehoverbgcolor #ffff80
set linehoverfgcolor black
set linehoveroutlinecolor black
set mainheadcirclecolor yellow
set workingfilescirclecolor red
set indexcirclecolor #00ff00
set circlecolors {white blue gray blue blue}
set linkfgcolor blue
set circleoutlinecolor black
set diffbgcolors {"#fff3f3" "#f0fff0"}
set web_browser xdg-open
set geometry(main) 1920x1168+0+0
set geometry(state) normal
set geometry(topwidth) 1920
set geometry(topheight) 255
set geometry(pwsash0) "905 1"
set geometry(pwsash1) "1357 1"
set geometry(botwidth) 1122
set geometry(botheight) 908
set permviews {}
1 change: 0 additions & 1 deletion aspects/dotfiles/files/.config/polybar/modules.ini
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ bar-volume-empty = ─
bar-volume-empty-font = 2
bar-volume-empty-foreground = ${colors.foreground-alt}

; Add it in the list for the right position above
[module/battery]
type = internal/battery
battery = BAT0
Expand Down
11 changes: 7 additions & 4 deletions aspects/dotfiles/files/.local/bin/polybar/mail
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

account1=$(~/.local/bin/get-password emails/account-1 email)
account2=$(~/.local/bin/get-password emails/account-3 email)
# account6=$(~/.local/bin/get-password emails/account-6 email)
account7=$(~/.local/bin/get-password emails/account-7 email)

unreadAccount1="$(find "${XDG_DATA_HOME}/mail/$account1/Archive/new" -type f | wc -l 2>/dev/null)"
unreadAccount2="$(find "${XDG_DATA_HOME}/mail/$account2/Archive/new" -type f | wc -l 2>/dev/null)"
unread=$((unreadAccount1 + unreadAccount2))
# unreadAccount6="$(find "${XDG_DATA_HOME}/mail/$account6/Archive/new" -type f | wc -l 2>/dev/null)"
unreadAccount7="$(find "${XDG_DATA_HOME}/mail/$account7/Archive/new" -type f | wc -l 2>/dev/null)"
# unread=$((unreadAccount1 + unreadAccount2 + unreadAccount6 + unreadAccount7))
unread=$((unreadAccount1 + unreadAccount2 + unreadAccount7))

pidof mbsync >/dev/null 2>&1 && icon="🔃"

[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "📬$unread$icon"
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "$unread"
Binary file modified aspects/dotfiles/files/.local/share/autojump/autojump.txt
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/autojump/autojump.txt.bak
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/newsboat/cache.db
Binary file not shown.
Binary file modified aspects/dotfiles/files/.local/share/zathura/bookmarks.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion aspects/nvim/files/.config/nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function Lazyload()
loader("navigator.lua")
loader("fidget.nvim")
loader("inlay-hints.nvim")
loader("null-ls.nvim")
loader("none-ls.nvim")
loader("mason.nvim")
loader("lsp_lines.nvim")
-- loader("lspsaga.nvim")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ return function(use)
})

use({
"jose-elias-alvarez/null-ls.nvim",
"nvimtools/none-ls.nvim",
after = "nvim-lspconfig",
config = conf.null_ls,
dependencies = {
Expand Down

0 comments on commit 7ab1dac

Please sign in to comment.