mirror of
https://github.com/SeriousBug/dotfiles
synced 2024-10-31 19:17:26 -05:00
Set up configuration
This commit is contained in:
parent
19a9360222
commit
034a1a6baf
|
@ -1,8 +1,36 @@
|
|||
[helpers]
|
||||
|
||||
[default]
|
||||
depends = []
|
||||
[applications.files]
|
||||
"applications/code.desktop" = "~/.local/share/applications/code.desktop"
|
||||
"applications/com.logseq.Logseq.desktop" = "~/.local/share/applications/com.logseq.Logseq.desktop"
|
||||
|
||||
[default.files]
|
||||
[bottom.files]
|
||||
"bottom/bottom.toml" = "~/.config/bottom/bottom.toml"
|
||||
|
||||
[default.variables]
|
||||
[fish.files]
|
||||
fish = "~/.config/fish"
|
||||
|
||||
[git.files]
|
||||
"git/gitconfig" = "~/.gitconfig"
|
||||
|
||||
[kitty.files]
|
||||
"kitty/kitty.conf" = "~/.config/kitty/kitty.conf"
|
||||
|
||||
[rofi.files]
|
||||
"rofi/config.rasi" = "~/.config/rofi/config.rasi"
|
||||
"rofi/themes/rofi-advanced-7-2.rasi" = "~/.local/share/rofi/themes/rofi-advanced-7-2.rasi"
|
||||
"rofi/themes/rofi-advanced-powermenu-6-2.rasi" = "~/.local/share/rofi/themes/rofi-advanced-powermenu-6-2.rasi"
|
||||
"rofi/themes/powermenu.sh" = "~/.local/share/rofi/themes/powermenu.sh"
|
||||
|
||||
[sway.files]
|
||||
"sway/config" = "~/.config/sway/config"
|
||||
|
||||
[systemd.files]
|
||||
"systemd/user/kdeconnectd.service" = "~/.config/systemd/user/kdeconnectd.service"
|
||||
"systemd/user/noisetorch.service" = "~/.config/systemd/user/noisetorch.service"
|
||||
"systemd/user/ssh-agent.service" = "~/.config/systemd/user/ssh-agent.service"
|
||||
|
||||
[waybar.files]
|
||||
"waybar/config" = "~/.config/waybar/config"
|
||||
"waybar/style.css" = "~/.config/waybar/style.css"
|
||||
"waybar/mediaplayer.py" = "~/.config/waybar/mediaplayer.py"
|
||||
|
|
18
applications/code.desktop
Normal file
18
applications/code.desktop
Normal file
|
@ -0,0 +1,18 @@
|
|||
[Desktop Entry]
|
||||
Name=Visual Studio Code
|
||||
Comment=Code Editing. Refined.
|
||||
GenericName=Text Editor
|
||||
Exec=/usr/bin/code --unity-launch --enable-features=UseOzonePlatform --ozone-platform=wayland %F
|
||||
Icon=visual-studio-code
|
||||
Type=Application
|
||||
StartupNotify=false
|
||||
StartupWMClass=Code
|
||||
Categories=TextEditor;Development;IDE;
|
||||
MimeType=text/plain;inode/directory;application/x-code-workspace;
|
||||
Actions=new-empty-window;
|
||||
Keywords=vscode;
|
||||
|
||||
[Desktop Action new-empty-window]
|
||||
Name=New Empty Window
|
||||
Exec=/usr/bin/code --new-window %F
|
||||
Icon=visual-studio-code
|
10
applications/com.logseq.Logseq.desktop
Executable file
10
applications/com.logseq.Logseq.desktop
Executable file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
NoDisplay=false
|
||||
Terminal=false
|
||||
Exec=/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=run.sh --file-forwarding com.logseq.Logseq --enable-features=UseOzonePlatform --ozone-platform=wayland @@u %U @@
|
||||
Icon=com.logseq.Logseq
|
||||
Name=Logseq
|
||||
Categories=Office
|
||||
MimeType=x-scheme-handler/logseq;
|
||||
X-Flatpak=com.logseq.Logseq
|
2059
kitty/kitty.conf
Normal file
2059
kitty/kitty.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,95 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* MACOS LAUNCHPAD LIKE THEME FOR ROFI
|
||||
* User : LR-Tech
|
||||
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
||||
*******************************************************************************/
|
||||
|
||||
* {
|
||||
font: "Montserrat 9";
|
||||
|
||||
bg0: #242424e0;
|
||||
bg1: #363636;
|
||||
bg2: #f5f5f520;
|
||||
bg3: #f5f5f540;
|
||||
bg4: #0860f2E6;
|
||||
|
||||
fg0: #f5f5f5;
|
||||
fg1: #f5f5f580;
|
||||
|
||||
background-color: transparent;
|
||||
text-color: @fg0;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
window {
|
||||
fullscreen: true;
|
||||
padding: 1em;
|
||||
background-color: @bg0;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @bg2;
|
||||
|
||||
margin: 0px calc( 50% - 120px );
|
||||
padding: 2px 4px;
|
||||
spacing: 4px;
|
||||
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @bg3;
|
||||
|
||||
children: [icon-search,entry];
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
}
|
||||
|
||||
icon-search {
|
||||
expand: false;
|
||||
filename: "search";
|
||||
vertical-align: 0.5;
|
||||
}
|
||||
|
||||
entry {
|
||||
placeholder: "Search";
|
||||
placeholder-color: @bg2;
|
||||
}
|
||||
|
||||
listview {
|
||||
margin: 48px calc( 50% - 560px );
|
||||
spacing: 48px;
|
||||
columns: 6;
|
||||
fixed-columns: true;
|
||||
}
|
||||
|
||||
element, element-text, element-icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 8px;
|
||||
spacing: 4px;
|
||||
|
||||
orientation: vertical;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @bg4;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 4em;
|
||||
horizontal-align: 0.5;
|
||||
}
|
||||
|
||||
element-text {
|
||||
horizontal-align: 0.5;
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* ROUNDED THEME FOR ROFI
|
||||
* User : LR-Tech
|
||||
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
||||
*******************************************************************************/
|
||||
|
||||
* {
|
||||
bg0: #212121F2;
|
||||
bg1: #2A2A2A;
|
||||
bg2: #3D3D3D80;
|
||||
bg3: #4CAF50F2;
|
||||
fg0: #E6E6E6;
|
||||
fg1: #FFFFFF;
|
||||
fg2: #969696;
|
||||
fg3: #3D3D3D;
|
||||
}
|
||||
|
||||
@import "rounded-common.rasi"
|
Loading…
Reference in a new issue