Changes to notifications, add a useful cal alias, and wip undock script
This commit is contained in:
parent
dd83416c32
commit
9479022933
|
@ -14,14 +14,14 @@
|
||||||
# the top and down respectively.
|
# the top and down respectively.
|
||||||
# The width can be negative. In this case the actual width is the
|
# The width can be negative. In this case the actual width is the
|
||||||
# screen width minus the width defined in within the geometry option.
|
# screen width minus the width defined in within the geometry option.
|
||||||
geometry = "300x5-30+20"
|
geometry = "900x5-30+20"
|
||||||
|
|
||||||
# Show how many messages are currently hidden (because of geometry).
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
indicate_hidden = yes
|
indicate_hidden = yes
|
||||||
|
|
||||||
# Shrink window if it's smaller than the width. Will be ignored if
|
# Shrink window if it's smaller than the width. Will be ignored if
|
||||||
# width is 0.
|
# width is 0.
|
||||||
shrink = no
|
shrink = yes
|
||||||
|
|
||||||
# The transparency of the window. Range: [0; 100].
|
# The transparency of the window. Range: [0; 100].
|
||||||
# This option will only work if a compositing window manager is
|
# This option will only work if a compositing window manager is
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
### Text ###
|
### Text ###
|
||||||
|
|
||||||
font = Iosevka 12
|
font = Iosevka 9
|
||||||
|
|
||||||
# The spacing between lines. If the height is smaller than the
|
# The spacing between lines. If the height is smaller than the
|
||||||
# font height, it will get raised to the font height.
|
# font height, it will get raised to the font height.
|
||||||
|
@ -204,7 +204,7 @@
|
||||||
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
# using the resolution and physical size. This might be useful in setups
|
# using the resolution and physical size. This might be useful in setups
|
||||||
# where there are multiple screens with very different dpi values.
|
# where there are multiple screens with very different dpi values.
|
||||||
per_monitor_dpi = false
|
per_monitor_dpi = true
|
||||||
|
|
||||||
[shortcuts]
|
[shortcuts]
|
||||||
|
|
||||||
|
|
7
scripts/bin/undock
Executable file
7
scripts/bin/undock
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
resrc
|
||||||
|
"${DOTFILES_PATH}/de/x/loadresources"
|
||||||
|
autorandr --change
|
||||||
|
restartbar
|
||||||
|
"${HOME}/.fehbg"
|
|
@ -15,6 +15,7 @@ alias la='ll -A' # show all
|
||||||
alias tree='tree -Csuh'
|
alias tree='tree -Csuh'
|
||||||
alias f='fzf'
|
alias f='fzf'
|
||||||
alias cp="rsync -ah --progress"
|
alias cp="rsync -ah --progress"
|
||||||
|
alias year="cal $(date +%Y)"
|
||||||
|
|
||||||
# navigation aliases
|
# navigation aliases
|
||||||
function c() {
|
function c() {
|
||||||
|
|
Reference in a new issue