Action | Shortcut |
---|---|
Spotlight Search | super + space |
Application Window | super + up |
Mission Control | super + down |
Clippy History | alt + v |
Workspace navigate right | super + right |
Workspace navigate left | super + left |
Workspace show active windows | super + down |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["super+shift+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ | |
"keys": ["alt+shift+1"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module BaseService | |
extend ActiveSupport::Concern | |
class_methods do | |
def call(*args, **keyword_args) | |
service = new | |
def service.result=(result) | |
@result = result | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################## | |
# User-defined Methods # | |
######################## | |
# Kill Process by | |
# | |
# port - All processes with port will be killed | |
# name - All processes given a name will be killed | |
function kill-process-by() | |
{ | |
case $1 in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "#### PREPPING DEPENDENCIES" | |
sudo apt install -y apt-transport-https curl software-properties-common | |
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
echo "#### ADDING GPG KEYS" | |
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg | |
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add - | |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.after(:suite) do | |
reporter = config.reporter | |
total_examples = reporter.examples.count | |
failed_examples = reporter.failed_examples.count | |
if failed_examples == 0 | |
fork { exec("osascript -e 'display notification \"#{total_examples} test(s) passed\" with title \"\u2705 RSpec Passed\"'") } | |
else | |
fork { exec("osascript -e 'display notification \"#{failed_examples} failed, #{total_examples - failed_examples} passed\" with title \"\u26D4 RSpec Failed\"'") } | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["ctrl+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["ctrl+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
{ "keys": ["ctrl+d"], "command": "find_under_expand" }, | |
{ "keys": ["option+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["option+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["ctrl+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+shift+super+d"], "command": "clone_file" }, | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ctrl + left/right - Previous/Next Word | |
fn + up/down - Page Up/Down | |
cmd + left/right - Previous/Next Workspace | |
ctrl + cmd + left/right - Move current window to 50% left/right side of page | |
cmd + alt + left/right - Move current window to Prev/Next Workspace | |
cmd + up - Fullscreen current window | |
cmd + down - See all windows | |
# Chrome, Sublime, Terminal | |
ctrl + t - New Tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bookworm | |
compizConfig (maybe not needed) | |
dconf Editor | |
diodon - copy/paste clipboard | |
eddy - simple pkg installer | |
elementary+ configurator | |
Emojione picker | |
FeedReader | |
Franz | |
Gifup (maybe not needed) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
raise NotImplementedError, "This #{self.class} cannot respond to:" |
NewerOlder