+ Rework DWM Autostart script

+ Fixed Qtile config problem
+ Shortcut to qtile config file
+ Cleaning up
This commit is contained in:
ziro 2020-05-13 08:57:18 +07:00
parent 28d74082e0
commit 9ac7ad05c1
4 changed files with 7 additions and 3 deletions

View file

@ -1,9 +1,9 @@
#! /bin/dash
picom &
sxhkd &
xsetroot -cursor_name left_ptr &
nitrogen --restore &
picom &
$HOME/.scripts/launch-conky.sh &
$HOME/.config/polybar/launch.sh &

View file

@ -1,4 +1,5 @@
#!/bin/sh
nitrogen --restore &
picom &
nitrogen --restore &
$HOME/.scripts/launch-conky_dwm.sh &

View file

@ -1,4 +1,4 @@
from libqtile.config import key, screen, group, drag, click, match
from libqtile.config import Key, Screen, Group, Drag, Click, Match
from libqtile.command import lazy
mod = "mod4" # Sets mod key to SUPER/WINDOWS

View file

@ -62,7 +62,10 @@ alias cfvim='vim $XDG_CONFIG_HOME/vim/vimrc'
alias cfbash='vim $HOME/.bashrc'
alias cfzsh='vim $XDG_CONFIG_HOME/zsh/.zshrc'
alias cfxres='vim $XDG_CONFIG_HOME/Xresources'
alias cfbsp='vim $XDG_CONFIG_HOME/bspwm/bspwmrc'
alias cfqtile='vim $XDG_CONFIG_HOME/qtile/config.py'
alias cfpoly='vim $XDG_CONFIG_HOME/polybar/config'
alias cfkeys='vim $XDG_CONFIG_HOME/sxhkd/sxhkdrc'
alias cfalias='vim $XDG_CONFIG_HOME/zsh/aliases'