diff options
author | Michael Kantor <michael@mikekantor.xyz> | 2025-09-01 15:33:24 -0400 |
---|---|---|
committer | Michael Kantor <michael@mikekantor.xyz> | 2025-09-01 15:33:24 -0400 |
commit | ac3aa3740a831f7bdeda342c6c4704568f01070c (patch) | |
tree | d8c2b3e0464c2561b274067df89d9c44d1a212a5 /autostart.sh_example | |
parent | d0ac4b9667108cd1eeb57b88072cf428cb953854 (diff) |
Updated README. Added autostart.sh example. Removed function to defloat mpv window. Adjusted font and formatting of GroupBox widget because a qtile update raised the numbers too high. Added OpenRazer support to colors.py and wallpaper.py; the lights of a Razer keyboard will change to the sixth color from pywal. Fixed logging in ticker_gecko.py. Migrated to new qtile entry point in relevant files.HEADmaster
Diffstat (limited to 'autostart.sh_example')
-rw-r--r-- | autostart.sh_example | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/autostart.sh_example b/autostart.sh_example new file mode 100644 index 0000000..b33aa55 --- /dev/null +++ b/autostart.sh_example @@ -0,0 +1,25 @@ +#!/bin/zsh + +mpd + +amixer -q set Capture mute nocap + +xautolock -time 5 -locker 'slock -m "$(cowsay $(fortune))"' & + +picom & + +xclip & + +dunst & + +touch /tmp/crprices.json +$HOME/.config/qtile/cusmodules/cuswidgets/ticker_gecko.py BTC XMR DOGE & + +sleep 1 + +$HOME/git/qtile/.venv/bin/qtile shell -c "reload_config()" & + +if [ "$(date +%m)" -eq 12 ]; then + #xsnow -notrees & + $HOME/Downloads/xsnow-3.7.6/src/xsnow -notrees -nomenu -scale 40 -moon 0 +fi |