Skip to content

Commit

Permalink
add shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
pandermatt committed Mar 5, 2024
1 parent c26e77d commit 59ef8ea
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 24 deletions.
21 changes: 19 additions & 2 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default defineConfig({
nav: [
{ text: 'Home', link: '/' },
{ text: 'Guide', link: '/start' },
{ text: 'Shortcuts', link: '/shortcuts' },
{ text: 'About Renuo', link: 'https://www.renuo.ch' }
],

Expand All @@ -45,16 +46,32 @@ export default defineConfig({
provider: 'local'
},

logo: '/renuo.svg',

sidebar: [
{
text: 'Renuo Laptop Setup Guide',
link: '/start',
items: [
{ text: 'Non-Technical Setup', link: '/non-technical-setup' },
{ text: 'Technical Setup', link: '/technical-setup' },
{ text: 'Nice to have', link: '/nice-to-have' }
{ text: 'Nice to have', link: '/nice-to-have' },
],
},
{ text: 'Shortcuts', link: '/shortcuts' },
{
text: 'Other Guides by Renuo',
items: [
{
text: 'SEO Checklist',
link: 'https://open-source.renuo.ch/seo-checklist/'
},
{
text: 'Applications Setup Guide',
link: 'https://open-source.renuo.ch/applications-setup-guide/'
}
]
}
},
],
}
})
19 changes: 10 additions & 9 deletions .vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
* in custom container, badges, etc.
* -------------------------------------------------------------------------- */

:root {

:root {
--vp-font-family-base: 'Montserrat', sans-serif;

--vp-c-default-1: var(--vp-c-gray-1);
Expand All @@ -56,7 +56,7 @@
--vp-c-brand-2: #28d79d;
--vp-c-brand-3: #1d9f74;
--vp-c-brand-soft: #28d79d;

--vp-c-tip-1: var(--vp-c-brand-1);
--vp-c-tip-2: var(--vp-c-brand-2);
--vp-c-tip-3: var(--vp-c-brand-3);
Expand All @@ -73,6 +73,10 @@
--vp-c-danger-soft: var(--vp-c-red-soft);
}

.dark .VPImage.logo {
filter: invert(1);
}

/**
* Component: Button
* -------------------------------------------------------------------------- */
Expand All @@ -95,11 +99,9 @@

:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
#1d9f74 30%,
#28d79d
);
--vp-home-hero-name-background: -webkit-linear-gradient(120deg,
#1d9f74 30%,
#28d79d);
}

@media (min-width: 640px) {
Expand Down Expand Up @@ -132,4 +134,3 @@
.DocSearch {
--docsearch-primary-color: var(--vp-c-brand-1) !important;
}

26 changes: 13 additions & 13 deletions nice_to_have/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ Now you finished with the Setup, below are some further recommendations. Do the

⭐ = Recommended for Interns

-[Rubymine / Toolbox](rubymine.md): A powerful IDE for Ruby and Rails development
-[Fork](https://git-fork.com/): A fast and friendly git client for Mac and Windows
-[Google Chrome Shortcuts](google_chrome_shortcuts.md): A list of useful Google Chrome shortcuts
-[Refined GitHub](https://github.com/refined-github/refined-github): Browser extension that simplifies the GitHub interface and adds useful features
-[GitHub CLI](https://cli.github.com/): `brew install gh` - GitHub's official command line tool
-[Rubymine / Toolbox](rubymine.md): A powerful IDE for Ruby and Rails development.
-[Fork](https://git-fork.com/): A fast and friendly git client for Mac and Windows.
-[Google Chrome Shortcuts](google_chrome_shortcuts.md):Set up search shortcuts for your most visited pages.
-[Refined GitHub](https://github.com/refined-github/refined-github): Browser extension that simplifies the GitHub interface and adds useful features.
-[GitHub CLI](https://cli.github.com/): `brew install gh` - GitHub's official command line tool.
-[Spark](https://sparkmailapp.com/): A powerful and intelligent email client for macOS. Use this to read and organize your emails. Send emails from Gmail, since we have a custom signature.
- [Raycast](raycast.md): A powerful alternative to Spotlight and Alfred
- [Google Drive Desktop](https://www.google.com/drive/download/): Access your Google Drive files from your desktop
- [CleanShot X](https://cleanshot.com): Powerful and lightweight screenshot software for Mac
- [Autojump](autojump.md): A faster way to navigate your filesystem
- [Google Drive Desktop](https://www.google.com/drive/download/): Access your Google Drive files from your desktop.
- [CleanShot X](https://cleanshot.com): Powerful and lightweight screenshot software for Mac.
- [Autojump](autojump.md): A faster way to navigate your filesystem.
- [fzf](https://github.com/junegunn/fzf): A fuzzy finder for files, command history, processes, git commits etc.
- [Puma-dev or Hotel](puma_or_hotel.md)
- [Increase GitHub Quota](increase_github_quota.md)
- Additional Browser for Development
- Additional Browser for Development:
- Firefox _is heavily used mainly in Germany. It's relevant for testing our web applications. We recommend checking your website in other browsers._
- Opera
- [KeepYouAwake](https://github.com/newmarcel/KeepingYouAwake): Prevent your Mac from going to sleep
- [Rectangle](https://rectangleapp.com/): Move and resize windows in macOS using keyboard shortcuts or snap areas
- [Alfred](https://www.alfredapp.com/): A productivity app for macOS
- [Bat](https://formulae.brew.sh/formula/bat): A clone of cat(1) with syntax highliting and Git integration
- [KeepYouAwake](https://github.com/newmarcel/KeepingYouAwake): Prevent your Mac from going to sleep.
- [Rectangle](https://rectangleapp.com/): Move and resize windows in macOS using keyboard shortcuts or snap areas.
- [Alfred](https://www.alfredapp.com/): A productivity app for macOS.
- [Bat](https://formulae.brew.sh/formula/bat): A clone of cat(1) with syntax highliting and Git integration.
1 change: 1 addition & 0 deletions public/renuo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions shortcuts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# macOS Shortcuts

Here are some useful macOS shortcuts to help you work more efficiently.

## General

- **⌥ + clicking items in the menu bar**: Show hidden settings.
- **⌥ + clicking the Notification Center icon**: Turn on Do Not Disturb mode quickly.
- **⌘ + ⌥ + D**: Hide or show the Dock.
- **⌃ + ⌘ + Q**: Immediately lock your screen.
- **⌘ + ⌥ + W**: Close all windows of the app currently in use without quitting the app.
- **⌘ + ⌃ + ⌥ + ⏏ (or Power button)**: Quit all apps and shut down your Mac immediately without a confirmation dialog.
- **⌘ + ⇧ + G (when in Finder or in the Open/Save dialog)**: Go to a specific folder.
- **⌘ + ⌥ + V**: Move the copied files (Cut-Paste) instead of just copying them.
- **⌘ + ⌥ + I**: Show the Inspector window, a single, live updating info window in Finder.
- **⌘ + ⌃ + Space**: Open the Character Viewer to insert emojis, symbols, and other special characters.
- **⌘ + ⇧ + /**: Open the Help menu in any application and immediately type to search.
- **⌘ + ⌥ + Esc**: Force quit an unresponsive application.
- **⌘ + ⇧ + .**: Toggle hidden files in Finder.
- **⌘ + ⌥ + ⇧ + V**: Paste and match the style of the destination text (useful in word processors or email clients).
- **⌘ + ⇧ + ⌥ + N**: Create a new folder with selected items in the Finder.
- **⌘ + 1 / 2 / 3 / 4**: Change Finder views (Icon, List, Column, and Gallery View respectively).
- **⌘ + ⌥ + S**: Show/hide the Sidebar in Finder windows.
- **⌘ + ⌃ + F**: Enter or exit Full Screen mode in compatible apps.
- **⌥ + Brightness/Volume keys**: Open Display preferences or Sound preferences directly.
- **⌘ + ⇧ + U**: Open the Utilities folder within Finder.
- **⌃ + ⌘ + Space (while in a text field)**: Show the emoji & symbols picker.

## Google Chrome

- [Search Shortcuts](nice_to_have/google_chrome_shortcuts.md): Set up search shortcuts for your most visited pages.
- **⌘ + ⌥ + I**: Open Developer Tools.
- **⌘ + ⌥ + J**: Open the JavaScript Console.
- **⌘ + ⌥ + U**: View the source code of the current page.
- **⌘ + ⇧ + D**: Bookmark all open tabs into a new bookmarks folder. Great for saving your current session for later.
- **⌘ + ⌥ + → (or ←)**: Jump to the next (or previous) open tab. Efficient for navigating through tabs without using your mouse.
- **⌘ + ⇧ + J**: Open the Downloads page in a new tab. Quickly access downloaded files.
- **⌘ + ⇧ + N**: Open a new window in Incognito mode. Good for private browsing sessions.
- **⌘ + Click on a link**: Open the link in a new tab in the background. Allows for efficient browsing without losing current page context.
- **⌘ + ⇧ + Click on a link**: Open the link in a new tab and switch to it immediately.
- **⌘ + ⌥ + Click on a link**: Open the link in a new tab on the right of the current tab.
- **⌘ + ⇧ + T**: Reopen the last closed tab. Handy for when you accidentally close a tab.
- **⌘ + 0**: Reset zoom level to default. Quickly return to the standard view.
- **⌘ + ⇧ + Delete**: Open the Clear Browsing Data options. Quickly clear your browsing history, cookies, cache, etc.
- **⌃ + Tab or ⌃ + ⇧ + Tab**: Cycle through tabs in the order they were opened.
- **⌘ + L**: Highlight the URL in the address bar. Makes it easy to type a new URL or copy the current one.
- **⌘ + ⌥ + F**: Move your cursor to the search box. Start a Google search without going to the Google homepage.
- **⌘ + ⇧ + R**: Reload your current page, ignoring cached content. Useful for developers or when updating content doesn't seem to appear.
- **⌘ + P**: Print the current page. For when you need a physical copy of a webpage.
- **⌘ + F**: Open the find bar to search for text within the current page. Helps locate specific information on a webpage quickly.

0 comments on commit 59ef8ea

Please sign in to comment.