qtile gives me more than dwm. I will try to live with it's quirks.
This commit is contained in:
parent
35ccb08948
commit
75517d5ad3
@ -6,7 +6,7 @@ mkdir -p ~/.config ~/.local/bin
|
|||||||
# link config
|
# link config
|
||||||
for i in clipit dunst gtk-3.0 neofetch qtile zathura; do
|
for i in clipit dunst gtk-3.0 neofetch qtile zathura; do
|
||||||
rm -rf ~/.config/${i}
|
rm -rf ~/.config/${i}
|
||||||
ln -sf $XDG_DATA_HOME/repos/dotfiles/_desktop/${i} ~/.config
|
ln -sf $(pwd)/${i} ~/.config
|
||||||
done
|
done
|
||||||
|
|
||||||
# delete not needed items in ~/.config
|
# delete not needed items in ~/.config
|
||||||
@ -16,7 +16,7 @@ for i in dconf; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# copy firefox wrapper
|
# copy firefox wrapper
|
||||||
ln -sf $XDG_DATA_HOME/repos/dotfiles/_desktop/firefox ~/.local/bin
|
ln -sf $(pwd)/firefox ~/.local/bin
|
||||||
|
|
||||||
# install scripts
|
# install scripts
|
||||||
for i in _scripts/*; do
|
for i in _scripts/*; do
|
||||||
|
@ -8,7 +8,7 @@ from libqtile.lazy import lazy
|
|||||||
groups = [
|
groups = [
|
||||||
Group("1", label="\uf292"),
|
Group("1", label="\uf292"),
|
||||||
Group("2", label="\uf738", matches=[Match(wm_class=["firefox"])]),
|
Group("2", label="\uf738", matches=[Match(wm_class=["firefox"])]),
|
||||||
Group("3", label="\uf70d", matches=[Match(wm_class=["Ferdium"])]),
|
Group("3", label="\uf70d", matches=[Match(wm_class=["Ferdi"])]),
|
||||||
Group("4", label="\uf7aa", matches=[Match(wm_class=["mutt"])]),
|
Group("4", label="\uf7aa", matches=[Match(wm_class=["mutt"])]),
|
||||||
Group("5", label="\uf120"),
|
Group("5", label="\uf120"),
|
||||||
Group("6", label="\uf120"),
|
Group("6", label="\uf120"),
|
||||||
@ -121,23 +121,23 @@ screens = [
|
|||||||
),
|
),
|
||||||
widget.Spacer(),
|
widget.Spacer(),
|
||||||
widget.GenPollText(
|
widget.GenPollText(
|
||||||
update_interval=0.2,
|
update_interval=0.5,
|
||||||
func=lambda: subprocess.check_output("sb-emerge").decode(),
|
func=lambda: subprocess.check_output("sb-emerge").decode(),
|
||||||
),
|
),
|
||||||
widget.GenPollText(
|
widget.GenPollText(
|
||||||
update_interval=0.2,
|
update_interval=0.5,
|
||||||
func=lambda: subprocess.check_output("sb-mail").decode(),
|
func=lambda: subprocess.check_output("sb-mail").decode(),
|
||||||
),
|
),
|
||||||
widget.GenPollText(
|
widget.GenPollText(
|
||||||
update_interval=0.2,
|
update_interval=0.5,
|
||||||
func=lambda: subprocess.check_output("sb-volume").decode(),
|
func=lambda: subprocess.check_output("sb-volume").decode(),
|
||||||
),
|
),
|
||||||
widget.GenPollText(
|
widget.GenPollText(
|
||||||
update_interval=0.2,
|
update_interval=0.5,
|
||||||
func=lambda: subprocess.check_output("sb-network").decode(),
|
func=lambda: subprocess.check_output("sb-network").decode(),
|
||||||
),
|
),
|
||||||
widget.GenPollText(
|
widget.GenPollText(
|
||||||
update_interval=0.2,
|
update_interval=0.5,
|
||||||
func=lambda: subprocess.check_output("sb-battery").decode(),
|
func=lambda: subprocess.check_output("sb-battery").decode(),
|
||||||
),
|
),
|
||||||
widget.Clock(
|
widget.Clock(
|
@ -22,7 +22,7 @@ mkdir -p $XDG_DATA_HOME/repos
|
|||||||
rm -rf $XDG_DATA_HOME/repos/dotfiles
|
rm -rf $XDG_DATA_HOME/repos/dotfiles
|
||||||
git clone --recurse https://git.insomniac.pl/ftpd/dotfiles $XDG_DATA_HOME/repos/dotfiles
|
git clone --recurse https://git.insomniac.pl/ftpd/dotfiles $XDG_DATA_HOME/repos/dotfiles
|
||||||
|
|
||||||
|
# configs
|
||||||
## btop
|
## btop
|
||||||
rm -rf ~/.config/btop
|
rm -rf ~/.config/btop
|
||||||
ln -sf $XDG_DATA_HOME/repos/dotfiles/btop ~/.config/
|
ln -sf $XDG_DATA_HOME/repos/dotfiles/btop ~/.config/
|
||||||
|
Loading…
Reference in New Issue
Block a user