Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use apps exported from shell #1814

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Configs/.config/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ if status is-interactive
starship init fish | source
end

set -x BROWSER 'firefox'
set -x VISUAL 'code'
set -x FILE 'dolphin'
set -x TERM 'kitty'

# List Directory
alias l='eza -lh --icons=auto' # long list
alias ls='eza -1 --icons=auto' # short list
Expand Down
8 changes: 4 additions & 4 deletions Configs/.config/hypr/keybindings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
$mainMod = Super # super / meta / windows key

# Assign apps
$term = kitty
$editor = code
$file = dolphin
$browser = firefox
$term = $BROWSER
$editor = $VISUAL
$file = $FILE
$browser = $BROWSER

# Window/Session actions
bind = $mainMod, Q, exec, $scrPath/dontkillsteam.sh # close focused window
Expand Down
7 changes: 7 additions & 0 deletions Configs/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
plugins=()
source $ZSH/oh-my-zsh.sh

# Default apps
export BROWSER="firefox"
export VISUAL="code"
export FILE="dolphin"
export TERM="kitty"


# In case a command is not found, try to find the package that has it
function command_not_found_handler {
local purple='\e[1;35m' bright='\e[0;1m' green='\e[1;32m' reset='\e[0m'
Expand Down