This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @name Solana | |
* @version 1.0.11 | |
* @author Disease#3749 | |
* @authorId 678469587444170762 | |
* @description macOS with barely any customization. | |
* @source https://github.com/maenDisease/BetterDiscordStuff/tree/main/Themes/Solana | |
* @invite BShu37e4jg | |
* @website https://maendisease.github.io/ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param ( | |
[string]$SourceExe, | |
[string]$DestinationPath, | |
[bool]$Save = $true | |
) | |
$Path = "$(Resolve-Path $DestinationPath.SubString(0, $DestinationPath.LastIndexOf('\')))\$($DestinationPath.Split('\')[-1])" | |
$WshShell = New-Object -ComObject WScript.Shell | |
$Shortcut = $WshShell.CreateShortcut($Path) | |
$Shortcut.TargetPath = $SourceExe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
updatesonglist() { | |
IFS=" | |
" | |
songlist="" | |
for i in $(mpc listall|sed "s/ /@/g"); do songlist="$(echo "$i"|awk -F '....$' '{print $1}')\n$songlist"; done | |
IFS="" | |
songlist=$(echo $songlist|sed "s/@/ /g"|sort) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.gitignore b/.gitignore | |
new file mode 100644 | |
index 0000000..445bfae | |
--- /dev/null | |
+++ b/.gitignore | |
@@ -0,0 +1 @@ | |
+dwm | |
diff --git a/config.def.h b/config.def.h | |
index 1c0b587..8cd3204 100644 | |
--- a/config.def.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Requirements: | |
# Rofi/dmenu | |
# Zenity (for file saving dialog) | |
# Scrot/maim | |
[ -x /usr/bin/rofi ] && selector="rofi -dmenu" || selector="dmenu" | |
[ -x /usr/bin/maim ] && scrot="maim -lc 0.5,0.2,0.7,0.3" || scrot="scrot" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import sleep, time | |
def add(n1, n2): | |
start = time() | |
sleep(n1) | |
sleep(n2) | |
return int(time() - start) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: window.location.href = "https://youtube.com/embed/" + window.location.href.match(/(?<=\d\/|\.be\/|v[=\/])([\w\-]{11,})|^([\w\-]{11})$/gm)[0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: window.location.href = "https://youtube.com/tv#/watch/video/control?v=" + window.location.href.match(/(?<=\d\/|\.be\/|v[=\/])([\w\-]{11,})|^([\w\-]{11})$/gm)[0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"youtube.com", | |
"vresod.tk", | |
"duckduckgo.com", | |
"github.com" | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Tab Titles | |
// @namespace https://vresod.github.io | |
// @version 1.0 | |
// @description Tab Titles is the not so perfect solution to giving custom title to tabs! | |
// @author Vresod | |
// @include * | |
// @grant none | |
// ==/UserScript== |
NewerOlder