mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
changes of sorts
This commit is contained in:
parent
c475aefc0f
commit
a4e5fe820e
15 changed files with 87 additions and 35 deletions
BIN
config/bg
BIN
config/bg
Binary file not shown.
Before Width: | Height: | Size: 6.7 MiB After Width: | Height: | Size: 1.1 MiB |
|
@ -1,13 +1,34 @@
|
|||
#!/bin/sh
|
||||
|
||||
setup=1
|
||||
|
||||
COLOR_BACKGROUND="#151515"
|
||||
COLOR_PRIMARY="#f58f44"
|
||||
COLOR_SECONDARY="#5977b3"
|
||||
|
||||
xsetroot -cursor_name left_ptr &
|
||||
xrdb ~/.Xdefaults
|
||||
bash $HOME/.config/xrandr.xi.sh
|
||||
|
||||
bspc monitor -d a1 a2 a3 a4 a5 a6 a7 a8 a9
|
||||
if [ "$setup" = "0" ]; then
|
||||
bspc monitor DP-0 -n A
|
||||
bspc monitor A -d a1 a2 a3 a4 a5 a6 a7 a8 a9
|
||||
bspc monitor DP-3 -n B
|
||||
bspc monitor B -d b1 b2 b3 b4 b5 b6 b7 b8 b9
|
||||
bspc monitor DP-4 -n C
|
||||
bspc monitor C -d c1 c2 c3 c4 c5 c6 c7 c8 c9
|
||||
bspc monitor HDMI-0 -n D
|
||||
bspc monitor D -d d1 d2
|
||||
else
|
||||
bspc monitor DP-3 -n A
|
||||
bspc monitor A -d a1 a2 a3 a4 a5 a6 a7 a8 a9
|
||||
bspc monitor DP-1 -n B
|
||||
bspc monitor B -d b1 b2 b3 b4 b5 b6 b7 b8 b9
|
||||
bspc monitor DP-2 -n C
|
||||
bspc monitor C -d c1 c2 c3 c4 c5 c6 c7 c8 c9
|
||||
bspc monitor HDMI-1 -n D
|
||||
bspc monitor D -d d1 d2
|
||||
fi
|
||||
|
||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
||||
pgrep -x picom > /dev/null || picom &
|
||||
|
@ -28,4 +49,4 @@ wmname bspwm
|
|||
|
||||
urxvt &
|
||||
|
||||
$HOME/.scripts/start-mpd
|
||||
sleep 1; $HOME/.scripts/start-mpd
|
||||
|
|
|
@ -3,15 +3,15 @@ input {
|
|||
plugin "curl"
|
||||
}
|
||||
|
||||
#audio_output {
|
||||
# type "httpd"
|
||||
# name "My HTTP Stream"
|
||||
# encoder "lame" # optional, vorbis or lame
|
||||
# port "6680"
|
||||
# bitrate "420"
|
||||
# format "44100:16:1"
|
||||
# max_clients "0"
|
||||
#}
|
||||
audio_output {
|
||||
type "httpd"
|
||||
name "My HTTP Stream"
|
||||
encoder "lame" # optional, vorbis or lame
|
||||
port "6680"
|
||||
bitrate "420"
|
||||
format "44100:16:1"
|
||||
max_clients "0"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
type "pulse"
|
||||
|
@ -20,10 +20,10 @@ audio_output {
|
|||
|
||||
audio_output {
|
||||
type "fifo"
|
||||
name "Visualizer feed"
|
||||
path "/tmp/mpd.fifo"
|
||||
format "44100:16:2"
|
||||
}
|
||||
name "Visualizer feed"
|
||||
path "/tmp/mpd.fifo"
|
||||
format "44100:16:2"
|
||||
}
|
||||
|
||||
db_file "~/.config/mpd/database"
|
||||
log_file "syslog"
|
||||
|
|
|
@ -169,8 +169,8 @@ time-format = %H:%M
|
|||
format-charging = <animation-charging> <label-charging>
|
||||
format-discharging = <ramp-capacity> <label-discharging>
|
||||
|
||||
label-charging = %percentage%%
|
||||
label-discharging = %percentage%%
|
||||
label-charging = -%percentage%%
|
||||
label-discharging = -%percentage%%
|
||||
label-full = %percentage%%
|
||||
|
||||
ramp-capacity-0 =
|
||||
|
|
|
@ -6,4 +6,19 @@ killall -q polybar
|
|||
# Wait until the processes have been shut down
|
||||
while pgrep -u $UID -x polybar >/dev/null; do sleep 0.1; done
|
||||
|
||||
# Launch Polybar, using default config location ~/.config/polybar/config
|
||||
#polybar music &
|
||||
|
||||
#MONITOR=DP-0 polybar --reload wsonly &
|
||||
|
||||
export MONITOR=DP-1
|
||||
polybar wsonly &
|
||||
|
||||
export MONITOR=DP-2
|
||||
polybar wsonly &
|
||||
|
||||
export MONITOR=HDMI-1
|
||||
polybar wsonly &
|
||||
|
||||
export MONITOR=DP-3
|
||||
polybar ws &
|
||||
|
|
|
@ -17,7 +17,6 @@ super + ctrl + alt + f
|
|||
{XF86AudioMute}
|
||||
amixer -D pulse set Master 1+ toggle
|
||||
|
||||
# runner
|
||||
super + r
|
||||
rofi -show drun -show-icons
|
||||
|
||||
|
@ -220,15 +219,18 @@ super + {_,shift +}w
|
|||
|
||||
# float the window
|
||||
super + f
|
||||
if [ -z "$(bspc query -N -n focused.floating)" ]; then \
|
||||
bspc node focused -t floating; \
|
||||
else \
|
||||
bspc node focused -t tiled; \
|
||||
fi
|
||||
[ -z "$(bspc query -N -n focused.floating)" ] && \
|
||||
bspc node focused -t floating || \
|
||||
bspc node focused -t tiled;
|
||||
|
||||
super + ctrl + f
|
||||
bspc node -t \~fullscreen
|
||||
|
||||
# pseudotile
|
||||
super + p
|
||||
bspc node focused -t pseudo_tiled
|
||||
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue