Search found 10 matches

by moudey
Wed Feb 14, 2024 7:47 pm
Forum: Issues
Topic: Recyclebin issue
Replies: 1
Views: 1275

Re: Recyclebin issue

This issue was fixed in the new build 1.9.15

by moudey
Wed Feb 14, 2024 7:42 pm
Forum: General
Topic: regedit
Replies: 1
Views: 1552

Re: regedit

Please explain more so I can help you

by moudey
Wed Feb 14, 2024 7:41 pm
Forum: News and Updates
Topic: New update build 1.9.15
Replies: 1
Views: 2603

New update build 1.9.15

New update build 1.9.15 is available Changes Fix internal bugs Fix Recycle bin issue Fix path.currentdirectory Fix the scroll indicator Extend command property [CMD-LINE, CMD-PROMPT] for Command Prompt. [CMD-POWERSHELL, CMD-PS] for PowerShell. [CMD-PWSH] for PowerShell 7. [CMD-SHELL, CMD-EXPLORER] f...
by moudey
Thu Feb 08, 2024 10:05 pm
Forum: Themes
Topic: Black
Replies: 0
Views: 4327

Black

Black theme

theme
{
    name="modern" 
    dark=1
    font.size=20

background {
    color = #000
    opacity=95
    effect = 1
}

separator {
    size = 1
    color = [#111,80]
    margin=[0, 4]
}

image.align = 2
}
black.png
black.png (71.12 KiB) Viewed 4327 times
by moudey
Thu Feb 08, 2024 6:20 pm
Forum: Issues
Topic: Scroll buttons issues
Replies: 2
Views: 1677

Re: Scroll buttons issues

Work is underway to fix this issue

by moudey
Sun Feb 04, 2024 8:57 pm
Forum: News and Updates
Topic: New Canary build 14
Replies: 0
Views: 2108

New Canary build 14

New Canary build 14

  • Fix the scroll indicator

Download
https://nilesoft.org/download#canary

by moudey
Sun Jan 28, 2024 5:00 pm
Forum: News and Updates
Topic: Shell has become an open source code
Replies: 0
Views: 2258

Shell has become an open source code

Shell has become an open source code. https://github.com/moudey/shell
Today, January 28, 2024, Shell is open source for everyone.
Your contributions are welcome.
You can now contribute to improving and adding your touches.

by moudey
Fri Jan 26, 2024 6:38 pm
Forum: Themes
Topic: Visual Studio Code dark
Replies: 0
Views: 3359

Visual Studio Code dark

Visual Studio Code dark mode theme { name="modern" dark=1 font.size=18 background { color = #1F1F1F effect = 0 } border { size = 1 color = #454545 radius = 2 padding = [0, 4, 0, 4] } item { text { normal = #CCCCCC select = #CCCCCC normal.disabled = #505050 select.disabled = #505050 } back...
by moudey
Mon Jan 22, 2024 7:37 pm
Forum: Themes
Topic: Light red
Replies: 0
Views: 3049

Light red

theme { name="modern" dark=1 font.size=20 layout.popup = 2 background { color = #522 opacity = 50 effect = 1 } border { enabled = 1 size = 1 color = [#f88, 25] opacity = 100 radius = 0 } item { opacity = 50 radius = 0 back.select = [#f88, 25] } separator { size = 1 color = [#f88, 50] opac...
by moudey
Mon Jan 22, 2024 5:16 pm
Forum: Snippets
Topic: Compress files using PowerShell
Replies: 0
Views: 2989

Compress files using PowerShell

Compress files using PowerShell Compress-Archive and assign a random name to the final file

item(title='Compress to ZIP'
	mode="multiple"
	image=[\uE0AA,#f88]
    cmd="powershell.exe"
    args='-Command Compress-Archive -Path @sel(2,",") -DestinationPath @str.guid')