This commit is contained in:
vibikim 2020-08-13 13:58:36 +03:00
parent 683206b466
commit e60eabb88c
5 changed files with 45 additions and 27 deletions

View file

@ -3,6 +3,7 @@
# #
export vblank_mode=0 export vblank_mode=0
set -o vi
[[ $- != *i* ]] && return [[ $- != *i* ]] && return
colors() { colors() {

View file

@ -18,9 +18,9 @@ What I use right now (stuff I have to install on a fresh linux install):
* picom/compton * picom/compton
* xfce4-power-manager * xfce4-power-manager
* nm-applet * nm-applet
* polkit-gnome -- TODO migrate to the lxde polkit * lxqt-policykit
* firefox * firefox
* rhythmbox -- TODO migrate to a MPD based music player * rhythmbox -- TODO migrate to a MPD based music player
* lxde-apperance (optional) * lxapperance (optional)
* NerdFonts * NerdFonts
* **DASH set as /bin/sh** (Arch Linux) * **DASH set as /bin/sh** (Arch Linux)

View file

@ -3,6 +3,7 @@
### ###
# AUTOSTART # AUTOSTART
### ###
xsetroot -cursor_name left_ptr #fix background cursor being different
sxhkd & sxhkd &
~/.config/polybar/launch.sh & ~/.config/polybar/launch.sh &
nitrogen --restore nitrogen --restore
@ -13,12 +14,26 @@ nm-applet &
blueman-applet & blueman-applet &
xfce4-power-manager & xfce4-power-manager &
numlockx on & numlockx on &
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & #/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
/usr/bin/lxqt-policykit-agent &
bspc monitor -d 1 2 3 4 5 6
bspc monitor VGA-0 7 8 9
###
# MONITORS
###
if [ "`hostname`" = "beef-book" ]; then
bspc monitor "DP-1" -d 1 2 3 4 5 6
bspc monitor "LVDS1" -d 1 2 3 4 5 6 7 8 9
bspc monitor "LVDS-1-1" -d 1 2 3 4 5 6 7 8 9
bspc monitor "VGA-0" 7 8 9
elif [ "`hostname`" = "lenOwO-pad" ]; then
bspc monitor "eDP" -d 1 2 3 4 5 6 7 8 9
bspc monitor "HDMI-0" -d 1 2 3 4 5 6 7 8 9
bspc monitor "VGA-0" -d 1 2 3 4 5 6 7 8 9
fi
###
# GLOBAL SETTINGS
###
bspc config focus_follows_pointer true bspc config focus_follows_pointer true
bspc config remove_disabled_monitors true bspc config remove_disabled_monitors true
bspc config remove_unplugged_monitors true bspc config remove_unplugged_monitors true
@ -36,25 +51,26 @@ bspc config gapless_monocle true
#TODO adauga culori din Xresources #TODO adauga culori din Xresources
### COLORS ###
# COLORS
###
#bspc config normal_border_color
#bspc config active_border_color
#bspc config focused_border_color
bspc config normal_border_color #bspc config presel_feedback_color
bspc config active_border_color
bspc config focused_border_color
bspc config presel_feedback_color #bspc config normal_sticky_border_color
#bspc config active_sticky_border_color
#bspc config focused_sticky_border_color
bspc config normal_sticky_border_color #bspc config normal_private_border_color ""
bspc config active_sticky_border_color #bspc config active_private_border_color ""
bspc config focused_sticky_border_color #bspc config focused_private_border_color ""
bspc config normal_private_border_color ""
bspc config active_private_border_color ""
bspc config focused_private_border_color ""
### ###
# APP RULES # RULES
### ###
bspc rule -a Gimp desktop='^6' state=floating follow=on bspc rule -a Gimp desktop='^6' state=floating follow=on
@ -62,9 +78,10 @@ bspc rule -a Pavucontrol state=floating
bspc rule -a copyq state=floating bspc rule -a copyq state=floating
bspc rule -a Blueman-manager state=floating bspc rule -a Blueman-manager state=floating
bspc rule -a Arandr state=floating bspc rule -a Arandr state=floating
bspc rule -a galculator state=floating
bspc rule -a Screenkey manage=off bspc rule -a Screenkey manage=off
bspc rule -a Firefox desktop='^1' bspc rule -a Navigator desktop='^1'
bspc rule -a Discord desktop='^4' bspc rule -a discord desktop='^4'
bspc rule -a AlarmWindow state=floating bspc rule -a AlarmWindow state=floating
bspc rule -a pop-up state=floating bspc rule -a pop-up state=floating
bspc rule -a setup state=floating bspc rule -a setup state=floating

View file

@ -85,7 +85,7 @@
idle_threshold = 120 idle_threshold = 120
### Text ### ### Text ###
font = JetBrains Mono Medium 10 font = Terminus 10
# 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.
@ -278,14 +278,14 @@
foreground = "#ffffff" foreground = "#ffffff"
timeout = 5 timeout = 5
# Icon for notifications with low urgency, uncomment to enable # Icon for notifications with low urgency, uncomment to enable
icon = /home/brodie/.config/dunst/normal.png icon = ~/.config/dunst/normal.png
[urgency_normal] [urgency_normal]
background = "#2b2b2b" background = "#2b2b2b"
foreground = "#ffffff" foreground = "#ffffff"
timeout = 5 timeout = 5
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable
icon = /home/brodie/.config/dunst/normal.png icon = ~/.config/dunst/normal.png
[urgency_critical] [urgency_critical]
background = "#900000" background = "#900000"
@ -293,7 +293,7 @@
frame_color = "#ff0000" frame_color = "#ff0000"
timeout = 5 timeout = 5
# Icon for notifications with critical urgency, uncomment to enable # Icon for notifications with critical urgency, uncomment to enable
icon = /home/brodie/.config/dunst/critical.png icon = ~/.config/dunst/critical.png
# Every section that isn't one of the above is interpreted as a rules to # Every section that isn't one of the above is interpreted as a rules to
# override settings for certain messages. # override settings for certain messages.

View file

@ -237,9 +237,9 @@ format-full-background = ${color.shade3}
format-full-foreground = ${color.fg-alt} format-full-foreground = ${color.fg-alt}
format-full-padding = 2 format-full-padding = 2
label-charging = %{A1:xfce4-power-manager-settings &:}%percentage%%%{A} label-charging = %{A1:xfce4-power-manager-settings &:} %percentage%%%{A}
label-discharging = %{A1:xfce4-power-manager-settings &:}%percentage%%%{A} label-discharging = %{A1:xfce4-power-manager-settings &:}%percentage%%%{A}
label-full = %{A1:xfce4-power-manager-settings &:}100%%{A} label-full = %{A1:xfce4-power-manager-settings &:} 100%%{A}
; Only applies if <ramp-capacity> is used ; Only applies if <ramp-capacity> is used
ramp-capacity-0 = ramp-capacity-0 =