summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-03-12 19:54:51 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-03-12 19:54:51 +0530
commit54b772cae06eb25adf33297e35234f33ded81a7b (patch)
treef287ee48faa8013e4a8f0ee764a6d3cd850bb24d /.local
parent7197e45d94dbcf4877d585fff8e634896876ae83 (diff)
neovim addition
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/picomm1
-rwxr-xr-x.local/bin/prompt8
2 files changed, 9 insertions, 0 deletions
diff --git a/.local/bin/picomm b/.local/bin/picomm
new file mode 100755
index 0000000..07835a6
--- /dev/null
+++ b/.local/bin/picomm
@@ -0,0 +1 @@
+picom --experimental-backends
diff --git a/.local/bin/prompt b/.local/bin/prompt
new file mode 100755
index 0000000..a6bb5c4
--- /dev/null
+++ b/.local/bin/prompt
@@ -0,0 +1,8 @@
+!/bin/sh
+# A dmenu binary prompt script
+# Gives dmenu prompt labeled with $1 to perform command $2
+# For example:
+# './promptquit "Do you really want to quit?" "shutdown -h now"'
+
+[ $(echo -e "No\nYes" | dmenu -i -p "$1") \
+ == "Yes" ] && $2