Compare commits
8 Commits
b47d69c9df
...
master
Author | SHA1 | Date | |
---|---|---|---|
2525d94f8a | |||
9f891cce6c | |||
a1617fb3d1 | |||
8f44967dd0 | |||
b7f71215b0 | |||
77b618ce3b | |||
16eb86a0ed | |||
073430579a |
@@ -19,6 +19,7 @@ alias ta='tmux attach -t C0DE || tmux new -s C0DE'
|
|||||||
alias open='xdg-open'
|
alias open='xdg-open'
|
||||||
alias dmesg='dmesg --color=always | grep -v UFW --color=always'
|
alias dmesg='dmesg --color=always | grep -v UFW --color=always'
|
||||||
alias sudo='sudo ' # So we can use my aliases in sudo - https://askubuntu.com/a/22043
|
alias sudo='sudo ' # So we can use my aliases in sudo - https://askubuntu.com/a/22043
|
||||||
|
alias gp='java -jar ~/bin/gp.jar -r "ACR1252 Dual Reader PICC"'
|
||||||
|
|
||||||
# Use `shred` if it exists, or just `rm -P`
|
# Use `shred` if it exists, or just `rm -P`
|
||||||
type "$shred" > /dev/null || alias shred='rm -P'
|
type "$shred" > /dev/null || alias shred='rm -P'
|
||||||
|
@@ -7,9 +7,10 @@ bar {
|
|||||||
#workspace_buttons yes
|
#workspace_buttons yes
|
||||||
#separator_symbol "|"
|
#separator_symbol "|"
|
||||||
|
|
||||||
font pango:FontAwesome5Free, SourceCodeProforPowerline 11
|
font pango:FontAwesome6Free 11, SourceCodeProforPowerline 11
|
||||||
|
|
||||||
status_command i3blocks -c $i3_path/i3blocks.conf
|
status_command i3blocks -c $i3_path/i3blocks.conf
|
||||||
|
# status_command i3status-rs $i3_path/i3status-rs.toml
|
||||||
|
|
||||||
colors {
|
colors {
|
||||||
background #161821
|
background #161821
|
||||||
|
@@ -201,9 +201,10 @@ bar {
|
|||||||
#workspace_buttons yes
|
#workspace_buttons yes
|
||||||
#separator_symbol "|"
|
#separator_symbol "|"
|
||||||
|
|
||||||
font pango:FontAwesome5Free, SourceCodeProforPowerline 11
|
font pango:FontAwesome6Free 11, SourceCodeProforPowerline 11
|
||||||
|
|
||||||
status_command i3blocks -c $i3_path/i3blocks.conf
|
status_command i3blocks -c $i3_path/i3blocks.conf
|
||||||
|
# status_command i3status-rs $i3_path/i3status-rs.toml
|
||||||
|
|
||||||
colors {
|
colors {
|
||||||
background #161821
|
background #161821
|
||||||
|
@@ -29,6 +29,10 @@ command=~/bin/i3blocks/$BLOCK_NAME
|
|||||||
separator_block_width=15
|
separator_block_width=15
|
||||||
markup=pango
|
markup=pango
|
||||||
|
|
||||||
|
[window]
|
||||||
|
interval=1
|
||||||
|
label=🗔
|
||||||
|
|
||||||
[scratchpad]
|
[scratchpad]
|
||||||
interval=5
|
interval=5
|
||||||
|
|
||||||
@@ -70,10 +74,6 @@ label=
|
|||||||
color=#81b71a
|
color=#81b71a
|
||||||
interval=5
|
interval=5
|
||||||
|
|
||||||
[window]
|
|
||||||
interval=1
|
|
||||||
label=🗔
|
|
||||||
|
|
||||||
[clock]
|
[clock]
|
||||||
label=
|
label=
|
||||||
interval=30
|
interval=30
|
||||||
|
71
home/.config/i3/i3status-rs.toml
Normal file
71
home/.config/i3/i3status-rs.toml
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
# Reference: https://github.com/greshake/i3status-rust/blob/v0.22.0/doc/blocks.md
|
||||||
|
|
||||||
|
[theme]
|
||||||
|
theme = "nord-dark"
|
||||||
|
|
||||||
|
[icons]
|
||||||
|
icons = "awesome6"
|
||||||
|
|
||||||
|
# [[block]]
|
||||||
|
#block = "focused_window"
|
||||||
|
#max_width = 35
|
||||||
|
#format = "{title}"
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "cpu"
|
||||||
|
#interval = 2
|
||||||
|
#format = "{utilization}"
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "load"
|
||||||
|
#format = "{1m}"
|
||||||
|
#interval = 15
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "memory"
|
||||||
|
#format = "{mem_used}"
|
||||||
|
#icons = true
|
||||||
|
#interval = 5
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "net"
|
||||||
|
interval = 2
|
||||||
|
#hide_missing = true
|
||||||
|
#hide_inactive = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "temperature"
|
||||||
|
# TODO: Only if I have temp sensors
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "backlight"
|
||||||
|
# TODO: Only if I'm a laptop
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "pacman"
|
||||||
|
interval = 600
|
||||||
|
format = "{both} updates available"
|
||||||
|
format_singular = "{both} update available"
|
||||||
|
critical_updates_regex = "(linux|linux-lts|linux-zen)"
|
||||||
|
aur_command = "yay -Qua"
|
||||||
|
#hide_when_uptodate = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "battery"
|
||||||
|
interval = 15
|
||||||
|
#hide_missing = true
|
||||||
|
format = " {percentage} ({time})"
|
||||||
|
full_threshold = 99
|
||||||
|
full_format = " "
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "sound"
|
||||||
|
format = "{volume}"
|
||||||
|
headphones_indicator = true
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "time"
|
||||||
|
format = "%h %d %R"
|
||||||
|
interval = 15
|
||||||
|
#on_click = "notify-send \"$(cal)\""
|
||||||
|
|
BIN
home/bin/gp.jar
Normal file
BIN
home/bin/gp.jar
Normal file
Binary file not shown.
Reference in New Issue
Block a user