mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-07-04 13:04:39 -04:00
Added Qtile
This commit is contained in:
36
.config/qtile/scripts/autostart.sh
Executable file
36
.config/qtile/scripts/autostart.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
|
||||
function run {
|
||||
if ! pgrep $1 ;
|
||||
then
|
||||
$@&
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
#starting utility applications at boot time
|
||||
lxsession &
|
||||
run nm-applet &
|
||||
run pamac-tray &
|
||||
numlockx on &
|
||||
blueman-applet &
|
||||
#flameshot &
|
||||
#picom --config $HOME/.config/picom/picom.conf &
|
||||
picom --config .config/picom/picom-blur.conf --experimental-backends &
|
||||
#/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
||||
dunst &
|
||||
feh --randomize --bg-fill /usr/share/wallpapers/garuda-wallpapers/*
|
||||
#starting user applications at boot time
|
||||
run volumeicon &
|
||||
#run discord &
|
||||
#nitrogen --random --set-zoom-fill &
|
||||
#run caffeine -a &
|
||||
#run vivaldi-stable &
|
||||
#run firefox &
|
||||
#run thunar &
|
||||
#run dropbox &
|
||||
#run insync start &
|
||||
#run spotify &
|
||||
#run atom &
|
||||
#run telegram-desktop &
|
6
.config/qtile/scripts/dmenu.sh
Executable file
6
.config/qtile/scripts/dmenu.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Import the colors
|
||||
. "${HOME}/.cache/wal/colors.sh"
|
||||
|
||||
dmenu_run -nb "$color0" -nf "$color15" -sb "$color1" -sf "$color15"
|
7
.config/qtile/scripts/picom-toggle.sh
Executable file
7
.config/qtile/scripts/picom-toggle.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
if pgrep -x "picom" > /dev/null
|
||||
then
|
||||
killall picom
|
||||
else
|
||||
picom -b --config ~/.config/picom/picom-blur.conf
|
||||
fi
|
Reference in New Issue
Block a user