summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
authorYigit Sever2021-10-25 13:34:42 +0300
committerYigit Sever2021-10-25 13:34:42 +0300
commit06c6f71a6bdad88fc40219a8dd086acd052958e1 (patch)
treefb31036d2084355001a26cd4b25ac707907b32d6 /.local
parent328b9457389bda7c54138db6e908de1c6e1acc3f (diff)
parent3fad12478ae35265aac6496f61342471da06c4a9 (diff)
downloaddotfiles-06c6f71a6bdad88fc40219a8dd086acd052958e1.tar.gz
dotfiles-06c6f71a6bdad88fc40219a8dd086acd052958e1.tar.bz2
dotfiles-06c6f71a6bdad88fc40219a8dd086acd052958e1.zip
Merge remote-tracking branch 'origin'
diffstat (limited to '.local')
-rwxr-xr-x.local/bin/app_populator9
-rwxr-xr-x.local/bin/notify_phone2
-rwxr-xr-x.local/bin/td2
-rwxr-xr-x.local/bin/toggle_notifications.sh16
-rw-r--r--.local/share/yadm/archivebin2940 -> 3313 bytes
5 files changed, 17 insertions, 12 deletions
diff --git a/.local/bin/app_populator b/.local/bin/app_populator
new file mode 100755
index 0000000..6182b98
--- /dev/null
+++ b/.local/bin/app_populator
@@ -0,0 +1,9 @@
1#!/usr/bin/env bash
2# https://www.reddit.com/r/commandline/comments/q9skbh/how_to_remember_what_applications_you_have/
3#< Populates the applist
4# cat ~/.local/share/applist | fzf
5
6ls /usr/share/man/man1 2> /dev/null |
7 sed -e 's/\.1.*//' |
8 xargs whatis 2> /dev/null |
9 sed -e '/unknown subject/d' -e 's/ *- / - /' > ~/.local/share/applist
diff --git a/.local/bin/notify_phone b/.local/bin/notify_phone
index 6228f73..adf1464 100755
--- a/.local/bin/notify_phone
+++ b/.local/bin/notify_phone
@@ -1,6 +1,6 @@
1#!/bin/bash 1#!/bin/bash
2 2
3TOKEN=795983515:AAHAPgakm-BbRKNodF9a0z_OH2VDsIxpm_Q 3TOKEN=$(pass telegram/notifier)
4CHAT_ID=4903620 4CHAT_ID=4903620
5INPUT=$@ 5INPUT=$@
6MESSAGE=${INPUT:-"all done"} 6MESSAGE=${INPUT:-"all done"}
diff --git a/.local/bin/td b/.local/bin/td
index f15c0c6..dad71f1 100755
--- a/.local/bin/td
+++ b/.local/bin/td
@@ -21,6 +21,6 @@ if [[ $? -ne 0 ]]; then
21 exit 0 21 exit 0
22fi 22fi
23 23
24echo REM "${task_date}" AT "${task_time}" +45 *15 MSG %\""${task_description}"%\" %c% >> "${HOME}/nextcloud/remind/050-events.rem" 24echo REM "${task_date}" AT "${task_time}" +45 *15 MSG %\""${task_description}"%\" %c% >> "${HOME}/nextcloud/virtuals/remind/050-events.rem"
25 25
26notify-send "notification set!" "${task_date} at ${task_time}" --app-name="remind" --icon="checkmark" 26notify-send "notification set!" "${task_date} at ${task_time}" --app-name="remind" --icon="checkmark"
diff --git a/.local/bin/toggle_notifications.sh b/.local/bin/toggle_notifications.sh
index 9b700b5..6818728 100755
--- a/.local/bin/toggle_notifications.sh
+++ b/.local/bin/toggle_notifications.sh
@@ -1,14 +1,10 @@
1#!/usr/bin/env bash 1#!/usr/bin/env bash
2 2
3TOGGLE=$HOME/.local/share/.pause_notifications 3if $(dunstctl is-paused); then
4
5if [ ! -e $TOGGLE ]; then
6 touch $TOGGLE
7 dunstify --appname="notifications" --icon="chronometer-pause" "pausing" -u low
8 sleep 3
9 killall -SIGUSR1 dunst # pause
10else
11 rm $TOGGLE
12 killall -SIGUSR2 dunst # resume
13 dunstify --appname="notifications" --icon="chronometer-start" "here's what happened" -u low 4 dunstify --appname="notifications" --icon="chronometer-start" "here's what happened" -u low
5 dunstctl set-paused false
6else
7 dunstify --appname="notifications" --icon="chronometer-pause" "pausing" -u low
8 sleep 2
9 dunstctl set-paused true
14fi 10fi
diff --git a/.local/share/yadm/archive b/.local/share/yadm/archive
index b5ea7de..b68d190 100644
--- a/.local/share/yadm/archive
+++ b/.local/share/yadm/archive
Binary files differ