Skip to content

Instantly share code, notes, and snippets.

View politicus's full-sized avatar

Francois Albert Gandon politicus

View GitHub Profile
@politicus
politicus / alfred_to_wezterm.applescript
Created March 2, 2025 11:08 — forked from philocalyst/alfred_to_wezterm.applescript
Alfred Wezterm Applescript (For terminal feature)
on alfred_script(query)
tell application "WezTerm" to activate
do shell script "/Applications/WezTerm.app/Contents/MacOS/wezterm cli spawn"
set commandList to paragraphs of query
repeat with command in commandList
do shell script "echo " & quoted form of command & " | /Applications/WezTerm.app/Contents/MacOS/wezterm cli send-text --no-paste"
end repeat
end alfred_script
@politicus
politicus / gist:3002509
Created June 27, 2012 08:46 — forked from magemore/gist:2486466
CSS - Adding rounded corners – border-radius
.round{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */
}