Skip to content

Commit

Permalink
new config usign debian
Browse files Browse the repository at this point in the history
  • Loading branch information
shivanshu-semwal committed Jan 24, 2024
1 parent 1e5296b commit 8827f42
Show file tree
Hide file tree
Showing 134 changed files with 5,991 additions and 1,357 deletions.
Binary file modified .audacity-data/Theme/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/Blue/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/Cyan/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/Example.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/Green/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/Purple/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 0 additions & 8 deletions .audacity-data/Theme/dark/README.md

This file was deleted.

12 changes: 12 additions & 0 deletions .audacity-data/Theme/dark/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
INSTALL INSTRUCTIONS

1. Download Audacity 2.2.0 or later from here www.audacityteam.org/
2. Choose the colour you want.
3. Copy the "ImageCache.png" file to C:\Users\YourName\AppData\Roaming\Audacity\Theme

(AppData folder is usually hidden in Windows 10, so make sure to select "hidden items" in windows explorer view settings).

For earlier Windows versions, go to Control Panel > Appearance and Personalization. Select Folder Options, then select the View tab.
Under Advanced settings, select Show hidden files, folders, and drives, and then select OK.

3. Open Audacity > Edit > Preferences >Interface and set the theme to 'Custom'.
Empty file modified .audacity-data/Theme/dark/Red/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .audacity-data/Theme/dark/White/ImageCache.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
117 changes: 117 additions & 0 deletions .bashrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi

if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'

#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi

#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="/home/totoro/.sdkman"
[[ -s "/home/totoro/.sdkman/bin/sdkman-init.sh" ]] && source "/home/totoro/.sdkman/bin/sdkman-init.sh"
6 changes: 4 additions & 2 deletions .config/Code/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"workbench.startupEditor": "none",
"workbench.editor.languageDetection": false,
"workbench.statusBar.visible": true,
"workbench.colorTheme": "Gruvbox Dark Hard",
// windows config
"window.menuBarVisibility": "toggle",
"window.restoreWindows": "none",
Expand Down Expand Up @@ -152,6 +151,9 @@
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
},
"[lisp]": {
"editor.bracketPairColorization.enabled": false,
},
"git.openRepositoryInParentFolders": "never",
"window.zoomLevel": 1,
"editor.minimap.enabled": false,
}
4 changes: 2 additions & 2 deletions .config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import:
- /home/totoro/.config/alacritty/themes/gruvbox_dark_hard.yaml
- /home/totoro/.config/alacritty/themes/alacritty_0_12.yaml

# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
Expand Down Expand Up @@ -53,7 +53,7 @@ font:
bold_italic:
family: IosevkaTerm Nerd Font
style: Bold Italic
size: 11.0
size: 18.0

offset:
x: 0
Expand Down
49 changes: 20 additions & 29 deletions .config/alacritty/themes/Cobalt2.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,25 @@
# From the famous Cobalt2 sublime theme
# Source : https://github.com/wesbos/cobalt2/tree/master/Cobalt2
colors:
# Default colors
primary:
background: '0x122637'
foreground: '0xffffff'

# Colors the cursor will use if `custom_cursor_colors` is true
background: '#122637'
foreground: '#ffffff'
cursor:
text: '0x122637'
cursor: '0xf0cb09'

# Normal colors
text: '#122637'
cursor: '#f0cb09'
normal:
black: '0x000000'
red: '0xff0000'
green: '0x37dd21'
yellow: '0xfee409'
blue: '0x1460d2'
magenta: '0xff005d'
cyan: '0x00bbbb'
white: '0xbbbbbb'

# Bright colors
black: '#000000'
red: '#ff0000'
green: '#37dd21'
yellow: '#fee409'
blue: '#1460d2'
magenta: '#ff005d'
cyan: '#00bbbb'
white: '#bbbbbb'
bright:
black: '0x545454'
red: '0xf40d17'
green: '0x3bcf1d'
yellow: '0xecc809'
blue: '0x5555ff'
magenta: '0xff55ff'
cyan: '0x6ae3f9'
white: '0xffffff'
black: '#545454'
red: '#f40d17'
green: '#3bcf1d'
yellow: '#ecc809'
blue: '#5555ff'
magenta: '#ff55ff'
cyan: '#6ae3f9'
white: '#ffffff'
28 changes: 28 additions & 0 deletions .config/alacritty/themes/Mariana.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
colors:
primary:
background: '#343d46'
foreground: '#d8dee9'
cursor:
cursor: '#fcbb6a'
text: '#ffffff'
normal:
black: '#000000'
blue: '#6699cc'
cyan: '#5fb4b4'
green: '#99c794'
magenta: '#c695c6'
red: '#ec5f66'
white: '#f7f7f7'
yellow: '#f9ae58'
bright:
black: '#333333'
blue: '#85add6'
cyan: '#82c4c4'
green: '#acd1a8'
magenta: '#d8b6d8'
red: '#f97b58'
white: '#ffffff'
yellow: '#fac761'
selection:
background: '#4e5a65'
text: '#d8dee9'
72 changes: 30 additions & 42 deletions .config/alacritty/themes/afterglow.yaml
Original file line number Diff line number Diff line change
@@ -1,48 +1,36 @@
colors:
# Default colors
primary:
background: '0x2c2c2c'
foreground: '0xd6d6d6'

dim_foreground: '0xdbdbdb'
bright_foreground: '0xd9d9d9'
dim_background: '0x202020' # not sure
bright_background: '0x3a3a3a' # not sure

# Cursor colors
background: '#2c2c2c'
foreground: '#d6d6d6'
dim_foreground: '#dbdbdb'
bright_foreground: '#d9d9d9'
cursor:
text: '0x2c2c2c'
cursor: '0xd9d9d9'

# Normal colors
text: '#2c2c2c'
cursor: '#d9d9d9'
normal:
black: '0x1c1c1c'
red: '0xbc5653'
green: '0x909d63'
yellow: '0xebc17a'
blue: '0x7eaac7'
magenta: '0xaa6292'
cyan: '0x86d3ce'
white: '0xcacaca'

# Bright colors
black: '#1c1c1c'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#cacaca'
bright:
black: '0x636363'
red: '0xbc5653'
green: '0x909d63'
yellow: '0xebc17a'
blue: '0x7eaac7'
magenta: '0xaa6292'
cyan: '0x86d3ce'
white: '0xf7f7f7'

# Dim colors
black: '#636363'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#f7f7f7'
dim:
black: '0x232323'
red: '0x74423f'
green: '0x5e6547'
yellow: '0x8b7653'
blue: '0x556b79'
magenta: '0x6e4962'
cyan: '0x5c8482'
white: '0x828282'
black: '#232323'
red: '#74423f'
green: '#5e6547'
yellow: '#8b7653'
blue: '#556b79'
magenta: '#6e4962'
cyan: '#5c8482'
white: '#828282'
25 changes: 25 additions & 0 deletions .config/alacritty/themes/alabaster.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
colors:
primary:
background: '#F7F7F7'
foreground: '#434343'
cursor:
text: '#F7F7F7'
cursor: '#434343'
normal:
black: '#000000'
red: '#AA3731'
green: '#448C27'
yellow: '#CB9000'
blue: '#325CC0'
magenta: '#7A3E9D'
cyan: '#0083B2'
white: '#BBBBBB'
bright:
black: '#777777'
red: '#F05050'
green: '#60CB00'
yellow: '#FFBC5D'
blue: '#007ACC'
magenta: '#E64CE6'
cyan: '#00AACB'
white: '#FFFFFF'
25 changes: 25 additions & 0 deletions .config/alacritty/themes/alabaster_dark.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
colors:
primary:
background: '#0E1415'
foreground: '#CECECE'
cursor:
text: '#0E1415'
cursor: '#CECECE'
normal:
black: '#0E1415'
red: '#e25d56'
green: '#73ca50'
yellow: '#e9bf57'
blue: '#4a88e4'
magenta: '#915caf'
cyan: '#23acdd'
white: '#f0f0f0'
bright:
black: '#777777'
red: '#f36868'
green: '#88db3f'
yellow: '#f0bf7a'
blue: '#6f8fdb'
magenta: '#e987e9'
cyan: '#4ac9e2'
white: '#FFFFFF'
Loading

0 comments on commit 8827f42

Please sign in to comment.