mirror of
https://github.com/zedsalim/debian-z.git
synced 2026-01-07 19:09:32 +00:00
Updates
This commit is contained in:
parent
320d80fbe0
commit
626d55a2fa
45 changed files with 182 additions and 64 deletions
|
|
@ -123,10 +123,8 @@ alias df='df -h'
|
|||
alias cl='clear'
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../..'
|
||||
alias v='vim'
|
||||
alias v='nvim'
|
||||
alias h='htop'
|
||||
alias wd='source ~/.config/scripts/wallpaper-double-display.sh'
|
||||
alias ws='source ~/.config/scripts/wallpaper-single-display.sh'
|
||||
alias d='bash ~/.config/scripts/set-double-display.sh'
|
||||
alias s='bash ~/.config/scripts/set-single-display.sh'
|
||||
alias n='bash ~/.config/scripts/c/new_project.sh'
|
||||
|
|
@ -135,8 +133,6 @@ alias c='bash ~/.config/scripts/c/compile.sh'
|
|||
alias pn='bash ~/.config/scripts/python/new_project.sh'
|
||||
alias po='bash ~/.config/scripts/python/old_project.sh'
|
||||
alias pc='bash ~/.config/scripts/python/compile.sh'
|
||||
alias t='bash ~/.config/scripts/themes.sh'
|
||||
alias y='bash ~/.config/scripts/youtube-watcher.sh'
|
||||
alias sts='git status'
|
||||
alias add='git add .'
|
||||
alias cmt='git commit -m'
|
||||
|
|
|
|||
|
|
@ -25,12 +25,12 @@
|
|||
|
||||
format="USER HOST PWD GIT PYENV TF KUBE"
|
||||
|
||||
font_color_user="white"
|
||||
background_user="blue"
|
||||
font_color_user="gray"
|
||||
background_user="white"
|
||||
texteffect_user="bold"
|
||||
|
||||
font_color_host="white"
|
||||
background_host="light-blue"
|
||||
background_host="dark-gray"
|
||||
texteffect_host="bold"
|
||||
|
||||
font_color_pwd="dark-gray"
|
||||
|
|
|
|||
17
optional/terminal_in_pcmanfm.sh
Executable file
17
optional/terminal_in_pcmanfm.sh
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo su
|
||||
|
||||
mkdir -p ~/.local/share/file-manager/actions/
|
||||
touch ~/.local/share/file-manager/actions/terminal.desktop
|
||||
echo "[Desktop Entry]
|
||||
Type=Action
|
||||
Tooltip=Open Terminal
|
||||
Name=Open Terminal
|
||||
Profiles=profile-one;
|
||||
Icon=utilities-terminal
|
||||
|
||||
[X-Action-Profile profile-one]
|
||||
MimeTypes=inode/directory;
|
||||
Exec=alacritty --working-directory %f
|
||||
Name=Default profile" > ~/.local/share/file-manager/actions/terminal.desktop
|
||||
Loading…
Add table
Add a link
Reference in a new issue