Miralinux Blog

  • Home
  • Linux
    • Scripts
    • CentOS
  • Apple
  • Microsoft
    • Features
    • Office
    • Windows
  • Learning
  • Games
  • Multimedia
    • XBMC
  • Other
    • About WordPress
  • Links
    • General
    • Software
      • Autocad
    • Hardware
      • BIOS
    • Linux
    • WiKieS

Category Archives: Software

Software Apple macOS X Features

Posted on 2014/03/06 by arno Posted in Mac OSX, Software

http://www.westwind.com/reference/OS-X/where-files.html

OS X Utilities
MacTracker | MacUpdate Desktop | TunnelBlik |

| SpectacleApp | Rectangle | KeyQue | iStatMenus | LineIn | AutoDMG | AutoDMG-GitHUB | F-Lux | AirFoil | The Unarchiver |

Fun | NoisyTyper |

Bartender 4 | SwiftBar |

Time Machine | TimeMachineEditor |

IOS Devices iPod iPhone iPad | iFunBox | TinyUmbrella |

Tweaks

Show/Hide Application icon in Dock | Edit Info.plist in Application-contense, add after <dict> “<key>LSUIElement</key> <true/>”.

Create Bootable macOS 10.12.1 Sierra ISO

source: InsanelyMac

  • hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
  • hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J
  • hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build
  • asr restore -source /Volumes/install_app/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase
  • rm /Volumes/OS\ X\ Base\ System/System/Installation/Packages
  • cp -rp /Volumes/install_app/Packages /Volumes/OS\ X\ Base\ System/System/Installation/
  • cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/OS\ X\ Base\ System/BaseSystem.chunklist
  • cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/OS\ X\ Base\ System/BaseSystem.dmg
  • hdiutil detach /Volumes/install_app
  • hdiutil detach /Volumes/OS\ X\ Base\ System/
  • hdiutil convert /tmp/Sierra.cdr.dmg -format UDTO -o /tmp/Sierra.iso
  • mv /tmp/Sierra.iso.cdr ~/Desktop/Sierra.iso

Software Google Chrome

Posted on 2013/11/03 by arno Posted in Software

Chrome hidden configuration pages

source: www.blogsdna.com/828/seven-hidden-configuration-pages-of-google-chrome-browser.htm

about:flags
about:network
about:stats
about:cache
about:histograms
about:plugins
about:dns
about:version
about:memory
about:crash

Software Deployment

Posted on 2013/10/03 by arno Posted in Software

Adobe | Install | downloads | toolkit

Java | Install | download | toolkit | (web security level default is [high])

<jre>.exe /s STATIC=0 WEB_JAVA=1 WEB_JAVA_SECURITY_LEVEL=H /L %TEMP%\setup-java.log

Software AutoHotkey

Posted on 2013/06/13 by arno Posted in Software

Links

AutoHotkey | Docs | Hotkeys | Commands-Send

[ Xahlee ] AutoHotkey Tutorial | Syntax Problems | Key Notations | Examples

Mac Keyboard | fnkey

Apple Keyboard Autohotkey script (Apple user on a windows desktop with apple keyboard)

[SyntaxHighlighting] | autohotkey

My Current Config

<span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a</span></pre>
; semicolon, such as this one, are comments. They are not executed.

; This script has a special filename and path because it is automatically
; launched when you run the program directly. Also, any text file whose
; name ends in .ahk is associated with the program, which means that it
; can be launched simply by double-clicking it. You can have as many .ahk
; files as you want, located in any folder. You can also run more than
; one .ahk file simultaneously and each will get its own tray icon.

; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.

#z::Run www.autohotkey.com


; 0) Spotlite search combination activates windows menu.
#space:: LWin

; 1) Swap Windows (Command) and Alt keys
; These button locations are reversed on Mac keyboards
;LAlt::LWin
;LWin::LAlt
RWin::AppsKey

; 2) Map F13 to Print screen
; Mac keyboards don't have a print-screen button!
; On mac keyboard the Clear button is Numlock
+F3::Send #^{TAB}
+F4::Send !^{TAB}
+F10::Send {Volume_Mute}
+F11::Send {Volume_DOwn 3}
+F12::Send {Volume_Up}

F13::PrintScreen
F14::ScrollLock
F15::Pause

F16::Insert
F17::Run Notepad
F18::Run Calc
F19::Run Calc
; Remapping control key shortcuts
;
; copy, paste, save, select all etc
#c::^c
#x::^x
#v::^v
#s::^s
#a::^a
#z::^z
#b::^b
#i::^i
; -- iTunes
;+F7::
;IfWinExist, ahk_class iTunes
;ControlSend, ahk_parent, ^{LEFT} ; < previous ;return ;+F8:: ;IfWinExist, ahk_class iTunes ;ControlSend, ahk_parent, {SPACE} ; play/pause toggle ;return ;+F9:: ;IfWinExist, ahk_class iTunes ;ControlSend, ahk_parent, ^{RIGHT} ; > next
;return

; -- WinAmp
+F7::
PostMessage, 0x111,40044,,,ahk_class Winamp v1.x
return

+F8::
SendMessage, 0x400,0,104,,ahk_class Winamp v1.x
if errorlevel = 0
{
SendMessage, 0x111,40045,,,ahk_class Winamp v1.x
}
else
{
SendMessage, 0x111,40046,,,ahk_class Winamp v1.x
}
return

+F9::
PostMessage, 0x111,40048,,,ahk_class Winamp v1.x
return

; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.

; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.

Software Mozilla Firefox

Posted on 2012/03/21 by arno Posted in Software

Private Sync

http://avih.github.io/blog/2013/05/31/private-firefox-sync-server-in-5-mins/

Custom style sheet per domain

In the firefox profile directory (%APPDATA%\Mozilla\Firefox\Profiles\[USERNAME-PROFILE]\chrome\userContent.css)
Copy-and-paste and change the [DOMAIN.tld] one of this stylesheets to your userContent.css file
Restart of firefox is required.

Domain prefix

@-moz-document domain(www.belastingdienst.nl) {
body {background-color:#000066 !important;}
}

URL prefix

@-moz-document url-prefix(http://www.belastingdienst.nl/) {
  body {background-color:#000066 !important;}
}

Custom background picture

@-moz-document domain(www.belastingdienst.nl) {
body {background:#fff url(http://[DOMAIN.tld]/bd-bg-body-2.png) 0px 0px repeat-y !important;}
}

The domain ‘www.belastingdienst.nl’ will change the background color to blue 🙂

  • Login
  • Mother of all Portals
  • .Handy .Handig
  • Links – wikis – wikies

Archives

  • June 2022
  • October 2021
  • June 2021
  • September 2016
  • April 2016
  • March 2016
  • November 2014
  • September 2014
  • August 2014
  • July 2014
  • April 2014
  • March 2014
  • November 2013
  • October 2013
  • August 2013
  • July 2013
  • June 2013
  • May 2013
  • April 2013
  • February 2013
  • December 2012
  • September 2012
  • August 2012
  • July 2012
  • June 2012
  • May 2012
  • April 2012
  • March 2012
  • January 2012
  • December 2011
  • November 2011
  • October 2011
  • September 2011
  • August 2011
  • July 2011
  • June 2011
  • May 2011
  • April 2011
  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • July 2010
  • June 2010
  • May 2010
  • April 2010
  • March 2010
  • February 2010
  • January 2010
CyberChimps ©2025