mirror of
https://github.com/SinTan1729/random.git
synced 2025-04-20 01:30:01 -05:00
Compare commits
No commits in common. "9f526cdcaf99f64ca0ebc3f16e3b451ff455ad2d" and "0bab79d1260c11f62b2a08b595e065e6bdb4145a" have entirely different histories.
9f526cdcaf
...
0bab79d126
3 changed files with 1 additions and 39 deletions
25
DND.py
25
DND.py
|
@ -1,25 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
# Turns on DND
|
|
||||||
# Can be used for toggling along with a parent script DNDToggle.sh
|
|
||||||
|
|
||||||
def set_procname(Newname):
|
|
||||||
newname = bytes(Newname, 'utf-8')
|
|
||||||
from ctypes import cdll, byref, create_string_buffer
|
|
||||||
libc = cdll.LoadLibrary('libc.so.6') #Loading a 3rd party library C
|
|
||||||
buff = create_string_buffer(len(newname)+1) #Note: One larger than the name (man prctl says that)
|
|
||||||
buff.value = newname #Null terminated string as it should be
|
|
||||||
libc.prctl(15, byref(buff), 0, 0, 0) #Refer to "#define" of "/usr/include/linux/prctl.h" for the misterious value 16 & arg[3..5] are zero as the man page says.
|
|
||||||
|
|
||||||
set_procname("DND.py")
|
|
||||||
|
|
||||||
from pydbus import SessionBus
|
|
||||||
import signal
|
|
||||||
|
|
||||||
bus = SessionBus()
|
|
||||||
remote_object = bus.get("org.freedesktop.Notifications", "/org/freedesktop/Notifications")
|
|
||||||
|
|
||||||
remote_object.Inhibit("DND.py", "Manual suspend", {})
|
|
||||||
|
|
||||||
signal.pause()
|
|
||||||
|
|
13
DNDToggle.sh
13
DNDToggle.sh
|
@ -1,13 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Toggles DND
|
|
||||||
|
|
||||||
dnd=$(pgrep DND.py)
|
|
||||||
if [[ $dnd ]];
|
|
||||||
then
|
|
||||||
kill $dnd
|
|
||||||
pactl set-sink-mute @DEFAULT_SINK@ false
|
|
||||||
else
|
|
||||||
/home/sintan/.local/bin/personal/DND.py &
|
|
||||||
pactl set-sink-mute @DEFAULT_SINK@ true
|
|
||||||
fi
|
|
|
@ -1,4 +1,4 @@
|
||||||

|

|
||||||
# Random Scripts
|
# Random Scripts
|
||||||
This repository is for random scripts I wrote mostly for personal use.
|
This repository is for random scripts I wrote mostly for personal use.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue