summarylogtreecommitdiffstats
path: root/alternating-layouts.install
diff options
context:
space:
mode:
Diffstat (limited to 'alternating-layouts.install')
-rw-r--r--alternating-layouts.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/alternating-layouts.install b/alternating-layouts.install
new file mode 100644
index 000000000000..87b86d3d5c44
--- /dev/null
+++ b/alternating-layouts.install
@@ -0,0 +1,14 @@
+post_install() {
+
+ msg() {
+ ALL_OFF="\e[1;0m"
+ BOLD="\e[1;1m"
+ GREEN="${BOLD}\e[1;32m"
+ local mesg=$1; shift
+ printf "${GREEN}==>${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2
+ }
+ echo ""
+ msg "autostart alternating-layouts in your ~/.i3/config with"
+ msg "'exec --no-startup-id python alternating_layouts.py'"
+ echo ""
+}