Compare commits
3 commits
33ef5a333f
...
4af8bc8944
Author | SHA1 | Date | |
---|---|---|---|
4af8bc8944 | |||
21c9af1336 | |||
df03100a99 |
4 changed files with 59 additions and 5 deletions
51
.config/i3status/config
Normal file
51
.config/i3status/config
Normal file
|
@ -0,0 +1,51 @@
|
|||
general {
|
||||
colors = true
|
||||
interval = 5
|
||||
}
|
||||
|
||||
order += "ipv6"
|
||||
order += "wireless _first_"
|
||||
order += "ethernet _first_"
|
||||
order += "battery all"
|
||||
order += "disk /"
|
||||
order += "load"
|
||||
order += "memory"
|
||||
order += "tztime local"
|
||||
|
||||
wireless _first_ {
|
||||
format_up = "W: (%quality at %essid) %ip"
|
||||
format_down = "W: down"
|
||||
}
|
||||
|
||||
ethernet _first_ {
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
}
|
||||
|
||||
battery all {
|
||||
format = "%status %percentage %remaining"
|
||||
last_full_capacity = true
|
||||
format_down = "No battery"
|
||||
status_chr = "⚡ CHR"
|
||||
status_bat = "🔋 BAT"
|
||||
status_unk = "? UNK"
|
||||
status_full = "☻ FULL"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%avail"
|
||||
}
|
||||
|
||||
load {
|
||||
format = "%1min"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = "%used | %available"
|
||||
threshold_degraded = "1G"
|
||||
format_degraded = "MEMORY < %available"
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = "%Y-%m-%d %H:%M:%S"
|
||||
}
|
|
@ -6,8 +6,3 @@ if [ -d "$ASDF_GO" ]; then
|
|||
ASDF_GOBIN="$ASDF_GO/packages/bin/"
|
||||
PATH="$ASDF_GOBIN:$PATH"
|
||||
fi
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
||||
\. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
fi
|
||||
|
|
2
.zshenv
2
.zshenv
|
@ -47,3 +47,5 @@ export PATH="$PATH:/home/kaholaz/.cache/scalacli/local-repo/bin/scala-cli"
|
|||
# >>> coursier install directory >>>
|
||||
export PATH="$PATH:/home/kaholaz/.local/share/coursier/bin"
|
||||
# <<< coursier install directory <<<
|
||||
|
||||
if [ -e /home/kaholaz/.nix-profile/etc/profile.d/nix.sh ]; then . /home/kaholaz/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
||||
|
|
6
.zshrc
6
.zshrc
|
@ -50,6 +50,12 @@ if [ -d "$HOME/.asdf" ]; then
|
|||
\. "$HOME/.asdf/asdf.sh"
|
||||
fi
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
fi
|
||||
|
||||
source ~/.aliases
|
||||
fpath+=~/.zfunc
|
||||
autoload -U compinit; compinit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue