mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2023-02-13 20:55:19 -05:00
10 lines
217 B
Bash
10 lines
217 B
Bash
|
#! /bin/bash
|
||
|
compton --config ~/.config/compton/compton.conf &
|
||
|
nitrogen --restore &
|
||
|
urxvtd -q -o -f &
|
||
|
|
||
|
while true; do
|
||
|
xsetroot -name "` date +"%b %e, %Y - %R" `"
|
||
|
sleep 1m # Update time every minute
|
||
|
done &
|