ref: move files to dedicated res folder

This commit is contained in:
relikd
2026-01-28 12:44:43 +01:00
parent 1af81e5b4a
commit b6eaa8d3c4
17 changed files with 7 additions and 8 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()

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

View File

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

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