system upgrade script + wallpaper

This commit is contained in:
Michael Zhang 2020-06-15 03:59:14 -05:00
parent a3cae37c5c
commit 36415a06b3
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
3 changed files with 10 additions and 1 deletions

View file

@ -39,7 +39,7 @@ exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
# and nm-applet is a desktop environment-independent system tray GUI for it. # and nm-applet is a desktop environment-independent system tray GUI for it.
exec --no-startup-id nm-applet exec --no-startup-id nm-applet
exec --no-startup-id picom -b exec --no-startup-id picom -b
exec --no-startup-id feh --bg-fill /home/michael/Pictures/wallpaper.jpg exec --no-startup-id feh --bg-fill $HOME/.config/i3/wallpaper.jpg
exec --no-startup-id polybar -r michael exec --no-startup-id polybar -r michael
exec --no-startup-id dunst exec --no-startup-id dunst
exec --no-startup-id i3-msg 'workspace 10; exec thunderbird; exec rocketchat-desktop; workspace_layout tabbed' exec --no-startup-id i3-msg 'workspace 10; exec thunderbird; exec rocketchat-desktop; workspace_layout tabbed'

BIN
dot_config/i3/wallpaper.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 KiB

View file

@ -0,0 +1,9 @@
#!/bin/bash
# Performs system upgrade using topgrade
# Then writes the time of last update into dest
dest=$HOME/.config/last-system-upgrade
topgrade --no-retry --verbose --yes
echo $(date "+%s") >> $dest