system upgrade script + wallpaper
This commit is contained in:
parent
a3cae37c5c
commit
36415a06b3
3 changed files with 10 additions and 1 deletions
|
@ -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
BIN
dot_config/i3/wallpaper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 399 KiB |
9
dot_local/scripts/executable_system-upgrade.sh
Normal file
9
dot_local/scripts/executable_system-upgrade.sh
Normal 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
|
||||||
|
|
Loading…
Reference in a new issue