mirror of
https://github.com/shokinn/.files.git
synced 2025-01-18 21:22:25 +00:00
Some Window Manager startup tweaks; Use dmenu instead of albert.
This commit is contained in:
parent
169c5cd743
commit
4db46e190f
16
config.yaml
16
config.yaml
|
@ -19,18 +19,12 @@ dotfiles:
|
|||
d_fonts:
|
||||
dst: ~/.local/share/fonts
|
||||
src: local/share/fonts
|
||||
d_org.albert.frontend.boxmodel.widgets:
|
||||
dst: ~/.local/share/albert/org.albert.frontend.boxmodel.widgets
|
||||
src: local/share/albert/org.albert.frontend.boxmodel.widgets
|
||||
d_polybar:
|
||||
dst: ~/.config/polybar
|
||||
src: config/polybar
|
||||
d_sxhkd:
|
||||
dst: ~/.config/sxhkd
|
||||
src: config/sxhkd
|
||||
f_albert.conf:
|
||||
dst: ~/.config/albert/albert.conf
|
||||
src: config/albert/albert.conf
|
||||
f_fehbg:
|
||||
dst: ~/.fehbg
|
||||
src: fehbg
|
||||
|
@ -45,12 +39,12 @@ dotfiles:
|
|||
f_vimrc:
|
||||
dst: ~/.vimrc
|
||||
src: vimrc
|
||||
f_xdefaults:
|
||||
dst: ~/.Xdefaults
|
||||
src: Xdefaults
|
||||
f_xinitrc:
|
||||
dst: ~/.xinitrc
|
||||
src: xinitrc
|
||||
f_xresources:
|
||||
dst: ~/.Xresources
|
||||
src: Xresources
|
||||
f_xsession:
|
||||
dst: ~/.xsession
|
||||
src: xsession
|
||||
|
@ -62,7 +56,6 @@ dotfiles:
|
|||
profiles:
|
||||
yoetunheimr:
|
||||
dotfiles:
|
||||
- f_xdefaults
|
||||
- d_bspwm
|
||||
- d_polybar
|
||||
- d_sxhkd
|
||||
|
@ -74,6 +67,5 @@ profiles:
|
|||
- f_xsession
|
||||
- f_zshrc
|
||||
- f_powerlevel9krc
|
||||
- f_albert.conf
|
||||
- d_org.albert.frontend.boxmodel.widgets
|
||||
- d_colors
|
||||
- f_xresources
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
{{@@ env['dotdrop_warning'] @@}}
|
||||
{{@@ env['dotdrop_warning'] @@}}
|
||||
*/
|
||||
|
||||
/* Set each shell as loginShell */
|
|
@ -2,6 +2,19 @@
|
|||
#
|
||||
# {{@@ env['dotdrop_warning'] @@}}
|
||||
#
|
||||
|
||||
# https://wiki.archlinux.org/index.php/GNOME/Keyring
|
||||
# Launch sxhkd
|
||||
sxhkd &
|
||||
# Set Wallpaper
|
||||
$HOME/.fehbg
|
||||
# Launch polybar(s)
|
||||
$HOME/.config/polybar/launch.sh &
|
||||
# Launch NetworkManager applet
|
||||
/usr/bin/nm-applet &
|
||||
# Launch Nextcloud
|
||||
/usr/bin/nextcloud &
|
||||
|
||||
bspc config border_width 2
|
||||
bspc config window_gap 5
|
||||
|
||||
|
@ -16,8 +29,3 @@ bspc rule -a Gimp desktop=^8 follow=on floating=on
|
|||
bspc rule -a Chromium desktop=^2
|
||||
bspc rule -a mplayer2 floating=on
|
||||
bspc rule -a Screenkey manage=off
|
||||
|
||||
# THIS SHOULD BE THE LAST!
|
||||
# Lauch polybar(s)
|
||||
$HOME/.config/polybar/launch.sh
|
||||
/usr/bin/albert
|
||||
|
|
|
@ -56,6 +56,10 @@ super + w
|
|||
# wm independent hotkeys
|
||||
##
|
||||
|
||||
# Start dmenu
|
||||
super + Space
|
||||
dmenu
|
||||
|
||||
# Start urxvt terminal
|
||||
super + Return
|
||||
urxvt
|
||||
|
|
|
@ -3,8 +3,15 @@
|
|||
# {{@@ env['dotdrop_warning'] @@}}
|
||||
#
|
||||
|
||||
# User Xdefaults
|
||||
#if [ -f $HOME/.Xdefaults ]; then
|
||||
# xrdb -merge -I$HOME ~/.Xresources
|
||||
#fi
|
||||
|
||||
# Start gnome keyring daemon
|
||||
eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets)
|
||||
export $(gnome-keyring-daemon --start --components=pkcs11,secrets,gpg)
|
||||
# Tells dbus to add DISPLAY to its own environment variables
|
||||
dbus-update-activation-environment --systemd DISPLAY
|
||||
# load Xresources
|
||||
$HOME/.fehbg &
|
||||
sxhkd &
|
||||
exec bspwm
|
||||
xrdb -I$HOME -load ~/.Xresources
|
||||
|
|
Loading…
Reference in a new issue