Skip to content

Instantly share code, notes, and snippets.

View IAmMoltony's full-sized avatar
🎨
Busy, very busy.

I use gentoo btw IAmMoltony

🎨
Busy, very busy.
View GitHub Profile
@IAmMoltony
IAmMoltony / ichijiteishi.lua
Created November 10, 2024 15:49
mpv pause text
local ov = mp.create_osd_overlay('ass-events')
ov.data = "{\\fs72}{\\an5}一時停止!!" -- You can literally put whatever pause text you want in here.
-- {\\fs72} sets font size to 72.
-- {\\an5} puts the text in the center of the screen.
mp.observe_property('pause', 'bool', function(_, paused)
if paused then ov:update()
else ov:remove() end
end)
@IAmMoltony
IAmMoltony / autorecon.sh
Created August 20, 2024 14:33
Script for auto reconnecting wifi
#!/usr/bin/env bash
network_name="wifi network name here"
notify-send "Autorecon started"
while true; do
if ! ping -c 2 google.com; then
notify-send "Network not networking, reconnect"
nmcli con up "$network_name"
@IAmMoltony
IAmMoltony / changewallpaper.service
Created May 3, 2024 13:34
systemd timer that changes wallpaper every 15 minutes
[Unit]
Description=Change Wallpaper Service
[Service]
Type=oneshot
ExecStart=/bin/bash -c 'DISPLAY=:0 XAUTHORITY=/home/YOUR_USERNAME/.Xauthority /usr/bin/feh --bg-fill --randomize "/WALLPAPER_FOLDER/$(ls /WALLPAPER_FOLDER/ | shuf -n 1)"'
@IAmMoltony
IAmMoltony / PlaylistDL.md
Last active April 4, 2024 12:47
YouTube Music Playlist Downloader

YouTube Music Playlist Downloader

Script for downloading a music playlist from YouTube. You will need yt-dlp installed on your computer.