Add rofi, update universal-shellrc
This commit is contained in:
parent
5ae229da31
commit
0108b41b87
10 changed files with 122 additions and 4 deletions
|
@ -57,3 +57,7 @@ cp $HOME/.claws-mail/matcherrc $GIT_DIR/claws-mail/matcherrc
|
||||||
|
|
||||||
# xinitrc
|
# xinitrc
|
||||||
cp $HOME/.xinitrc $GIT_DIR/other-files/.xinitrc
|
cp $HOME/.xinitrc $GIT_DIR/other-files/.xinitrc
|
||||||
|
|
||||||
|
# rofi
|
||||||
|
rm -rf $GIT_DIR/rofi/
|
||||||
|
cp -r $HOME/.config/rofi/ $GIT_DIR/rofi/
|
0
gnupg/gpg-agent.conf
Normal file → Executable file
0
gnupg/gpg-agent.conf
Normal file → Executable file
0
gnupg/gpg.conf
Normal file → Executable file
0
gnupg/gpg.conf
Normal file → Executable file
|
@ -47,6 +47,11 @@ cp $GIT_DIR/other-files/.xinitrc $HOME/.xinitrc
|
||||||
cp $GIT_DIR/claws-mail/clawsrc $HOME/.claws-mail/clawsrc
|
cp $GIT_DIR/claws-mail/clawsrc $HOME/.claws-mail/clawsrc
|
||||||
cp $GIT_DIR/claws-mail/matcherrc $HOME/.claws-mail/matcherrc
|
cp $GIT_DIR/claws-mail/matcherrc $HOME/.claws-mail/matcherrc
|
||||||
|
|
||||||
|
# rofi
|
||||||
|
rm -rf $HOME/.config/rofi/
|
||||||
|
mkdir $HOME/.config/rofi/
|
||||||
|
cp -r $GIT_DIR/rofi $HOME/.config/rofi/
|
||||||
|
|
||||||
# VS code
|
# VS code
|
||||||
mkdir -p $HOME/.config/Code/User/
|
mkdir -p $HOME/.config/Code/User/
|
||||||
mkdir -p $HOME/.vscode/
|
mkdir -p $HOME/.vscode/
|
||||||
|
|
1
rofi/config.rasi
Normal file
1
rofi/config.rasi
Normal file
|
@ -0,0 +1 @@
|
||||||
|
@theme "/home/askiiart/.config/rofi/themes/catppuccin-mocha.rasi"
|
112
rofi/themes/catppuccin-mocha.rasi
Normal file
112
rofi/themes/catppuccin-mocha.rasi
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
* {
|
||||||
|
bg-col: #1e1e2e;
|
||||||
|
bg-col-light: #1e1e2e;
|
||||||
|
border-col: #c361d8;
|
||||||
|
selected-col: #1e1e2e;
|
||||||
|
blue: #89b4fa;
|
||||||
|
fg-col: #cdd6f4;
|
||||||
|
fg-col2: #f38ba8;
|
||||||
|
grey: #6c7086;
|
||||||
|
|
||||||
|
width: 600;
|
||||||
|
font: "FiraCode Nerd Font 14";
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text, element-icon , mode-switcher {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
height: 360px;
|
||||||
|
border: 3px;
|
||||||
|
border-color: @border-col;
|
||||||
|
border-radius: 12px;
|
||||||
|
background-color: @bg-col;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainbox {
|
||||||
|
background-color: @bg-col;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
children: [prompt,entry];
|
||||||
|
background-color: @bg-col;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
background-color: @blue;
|
||||||
|
padding: 6px;
|
||||||
|
text-color: @bg-col;
|
||||||
|
border-radius: 6px;
|
||||||
|
margin: 20px 0px 0px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox-prompt-colon {
|
||||||
|
expand: false;
|
||||||
|
str: ":";
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
padding: 6px;
|
||||||
|
margin: 20px 0px 0px 10px;
|
||||||
|
text-color: @fg-col;
|
||||||
|
background-color: @bg-col;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
border: 0px 0px 0px;
|
||||||
|
padding: 6px 0px 0px;
|
||||||
|
margin: 10px 0px 0px 20px;
|
||||||
|
columns: 1;
|
||||||
|
lines: 5;
|
||||||
|
background-color: @bg-col;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
padding: 5px;
|
||||||
|
background-color: @bg-col;
|
||||||
|
text-color: @fg-col ;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected {
|
||||||
|
background-color: @selected-col ;
|
||||||
|
text-color: @fg-col2 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
mode-switcher {
|
||||||
|
spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
padding: 10px;
|
||||||
|
background-color: @bg-col-light;
|
||||||
|
text-color: @grey;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
button selected {
|
||||||
|
background-color: @bg-col;
|
||||||
|
text-color: @blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
message {
|
||||||
|
background-color: @bg-col-light;
|
||||||
|
margin: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox {
|
||||||
|
padding: 6px;
|
||||||
|
margin: 20px 0px 0px 20px;
|
||||||
|
text-color: @blue;
|
||||||
|
background-color: @bg-col-light;
|
||||||
|
}
|
|
@ -8,7 +8,6 @@ alias ll="ls -l"
|
||||||
alias la="ls -a"
|
alias la="ls -a"
|
||||||
|
|
||||||
alias icat="kitten icat"
|
alias icat="kitten icat"
|
||||||
alias lock="i3lock -c 202f56"
|
|
||||||
|
|
||||||
alias noss="sudo NIXPKGS_ALLOW_INSECURE=1 nixos-rebuild switch --upgrade-all"
|
alias noss="sudo NIXPKGS_ALLOW_INSECURE=1 nixos-rebuild switch --upgrade-all"
|
||||||
alias nosb="sudo NIXPKGS_ALLOW_INSECURE=1 nixos-rebuild build --upgrade-all"
|
alias nosb="sudo NIXPKGS_ALLOW_INSECURE=1 nixos-rebuild build --upgrade-all"
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
3574212260999303055
|
|
|
@ -1 +0,0 @@
|
||||||
foxbox-54576
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/scoped_dirX8EBaG/SingletonSocket
|
|
Loading…
Reference in a new issue