This commit is contained in:
relikd
2026-01-27 16:07:35 +01:00
commit 1eca425c5f
23 changed files with 540 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 1

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 2

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 3

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 4

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 9

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 0

View File

@@ -0,0 +1,2 @@
#!/bin/sh
say 5

View File

@@ -0,0 +1,4 @@
#!/usr/bin/env python3
print()
print("=> 2^8 is", 2**8)
print()

5
examples/Flags/icon.svg Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 8 8">
<circle cx="4" cy="4" r="3" fill="turquoise"/>
<rect x="3.5" width="1" height="8" fill="cyan"/>
</svg>

After

Width:  |  Height:  |  Size: 214 B

View File

@@ -0,0 +1,2 @@
#!/bin/sh
ifconfig

View File

@@ -0,0 +1,2 @@
#!/bin/sh
top

2
examples/Open Desktop Folder Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
open ~/Desktop

8
examples/Toggle Desktop Icons Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
prev=$(defaults read com.apple.finder CreateDesktop)
if [ "$prev" = 0 ]; then
flag=1
else
flag=0
fi
defaults write com.apple.finder CreateDesktop $flag && killall Finder