voidrice/.local/bin/i3cmds/toggle-welcome

11 lines
557 B
Text
Raw Normal View History

2020-03-22 13:58:59 +00:00
#!/bin/sh
# Toggles the LARBS welcome message.
2020-04-08 23:06:11 +00:00
PIC="${XDG_DATA_HOME:-$HOME/.local/share}/larbs/larbs.png"
2020-03-22 13:58:59 +00:00
grep LARBSWELCOME "$XDG_CONFIG_HOME/xprofile" &&
( sed -i "/LARBSWELCOME/d" "$XDG_CONFIG_HOME/xprofile" && notify-send -i "$PIC" "LARBS welcome message" "Welcome message disabled. Press Super+Shift+F1 again to reverse." ) ||
( echo "notify-send -i \"$PIC\" \"Welcome to LARBS\" \"Press super+F1 for the help menu.\" # LARBSWELCOME" >> "$XDG_CONFIG_HOME/xprofile" &&
2020-03-22 13:58:59 +00:00
notify-send -i "$PIC" "LARBS welcome message" "Welcome message re-enabled." )