ref: move files to dedicated res folder
This commit is contained in:
2
res/examples/Custom Sort Order/1. One
Executable file
2
res/examples/Custom Sort Order/1. One
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 1
|
||||
2
res/examples/Custom Sort Order/2. Two
Executable file
2
res/examples/Custom Sort Order/2. Two
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 2
|
||||
2
res/examples/Custom Sort Order/3. Three
Executable file
2
res/examples/Custom Sort Order/3. Three
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 3
|
||||
2
res/examples/Custom Sort Order/4. Four
Executable file
2
res/examples/Custom Sort Order/4. Four
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 4
|
||||
2
res/examples/Custom Sort Order/9 Nine
Executable file
2
res/examples/Custom Sort Order/9 Nine
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 9
|
||||
2
res/examples/Custom Sort Order/999 Zero
Executable file
2
res/examples/Custom Sort Order/999 Zero
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 0
|
||||
2
res/examples/Custom Sort Order/Five
Executable file
2
res/examples/Custom Sort Order/Five
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
say 5
|
||||
4
res/examples/Flags/999 Python example [verbose]
Executable file
4
res/examples/Flags/999 Python example [verbose]
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env python3
|
||||
print()
|
||||
print("=> 2^8 is", 2**8)
|
||||
print()
|
||||
5
res/examples/Flags/icon.svg
Normal file
5
res/examples/Flags/icon.svg
Normal 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 |
2
res/examples/Flags/ifconfig (text editor) [txt]
Executable file
2
res/examples/Flags/ifconfig (text editor) [txt]
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
ifconfig
|
||||
2
res/examples/Flags/top (updated) [verbose]
Executable file
2
res/examples/Flags/top (updated) [verbose]
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
top
|
||||
2
res/examples/Open Desktop Folder
Executable file
2
res/examples/Open Desktop Folder
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
open ~/Desktop
|
||||
8
res/examples/Toggle Desktop Icons
Executable file
8
res/examples/Toggle Desktop Icons
Executable 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
|
||||
Reference in New Issue
Block a user