Skip to content

Commit 1a159cb

Browse files
committed
Initial commit
0 parents  commit 1a159cb

29 files changed

+174
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[Desktop Entry]
2+
Type=Application
3+
Exec=/bin/sh /var/games/CLV-C-DISABLE_RESET_COMBO/Disable_Button_Combination_to_Reset.sh
4+
Path=/var/lib/clover/profiles/0/CLV-C-DISABLE_RESET_COMBO
5+
Name=Disable Button Combination to Reset
6+
Icon=/var/games/CLV-C-DISABLE_RESET_COMBO/CLV-C-DISABLE_RESET_COMBO.png
7+
8+
[X-CLOVER Game]
9+
Code=CLV-C-DISABLE_RESET_COMBO
10+
TestID=777
11+
ID=0
12+
Players=1
13+
Simultaneous=0
14+
ReleaseDate=1900-01-01
15+
SaveCount=0
16+
SortRawTitle=disable button combination to reset
17+
SortRawPublisher=UNKNOWN
18+
Copyright=hakchi2 ©2017 Alexey 'Cluster' Avdyukhin
338 Bytes
Loading
983 Bytes
Loading
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
#
3+
# Script by Daniel Radtke <DanTheMan827>
4+
#
5+
source /etc/preinit
6+
script_init
7+
8+
cfg_clovercon_home_combination="0x7FFF"
9+
10+
save_config
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[Desktop Entry]
2+
Type=Application
3+
Exec=/bin/sh /var/games/CLV-C-SELECT_AB_AUTOFIRE/Use_Select_AB_to_enable_autofire_on_AB.sh
4+
Path=/var/lib/clover/profiles/0/CLV-C-SELECT_AB_AUTOFIRE
5+
Name=Use Select+A/B to Enable Autofire on A/B
6+
Icon=/var/games/CLV-C-SELECT_AB_AUTOFIRE/CLV-C-SELECT_AB_AUTOFIRE.png
7+
8+
[X-CLOVER Game]
9+
Code=CLV-C-SELECT_AB_AUTOFIRE
10+
TestID=777
11+
ID=0
12+
Players=1
13+
Simultaneous=0
14+
ReleaseDate=1900-01-01
15+
SaveCount=0
16+
SortRawTitle=use select+a/b to enable autofire on a/b
17+
SortRawPublisher=UNKNOWN
18+
Copyright=hakchi2 ©2017 Alexey 'Cluster' Avdyukhin
338 Bytes
Loading
983 Bytes
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/sh
2+
#
3+
# Script by Daniel Radtke <DanTheMan827>
4+
#
5+
source /etc/preinit
6+
script_init
7+
8+
script_path="$(dirname "$0")"
9+
10+
if [ "$cfg_clovercon_autofire" != "1" ]; then
11+
cfg_clovercon_autofire=1
12+
decodepng "$script_path/enabled.png" > /dev/fb0
13+
else
14+
cfg_clovercon_autofire=0
15+
decodepng "$script_path/disabled.png" > /dev/fb0
16+
fi
17+
18+
save_config
19+
sleep 1
330 Bytes
Loading
315 Bytes
Loading

0 commit comments

Comments
 (0)