FUCKKKK
This commit is contained in:
parent
dec7a2201c
commit
7f2828d3c2
6 changed files with 107 additions and 0 deletions
Binary file not shown.
1
.config/environment.d/10-home-manager.conf
Symbolic link
1
.config/environment.d/10-home-manager.conf
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/nix/store/00xgj6q09brjv0dwv0sfz46nj3hqgm2d-home-manager-files/.config/environment.d/10-home-manager.conf
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
v = "nvim";
|
v = "nvim";
|
||||||
d = "cd ~/Documents";
|
d = "cd ~/Documents";
|
||||||
D = "cd ~/Downloads";
|
D = "cd ~/Downloads";
|
||||||
|
dot = "cd ~/dotfiles";
|
||||||
};
|
};
|
||||||
|
|
||||||
initContent = ''
|
initContent = ''
|
||||||
|
|
@ -70,6 +71,7 @@
|
||||||
obsidian # For epic note taking (really just mediocre journaling)
|
obsidian # For epic note taking (really just mediocre journaling)
|
||||||
keepassxc # Secure password manager
|
keepassxc # Secure password manager
|
||||||
syncthing # Self explanatory
|
syncthing # Self explanatory
|
||||||
|
ghostty # Terminal emulator
|
||||||
# Fonts
|
# Fonts
|
||||||
nerd-fonts.jetbrains-mono
|
nerd-fonts.jetbrains-mono
|
||||||
miracode
|
miracode
|
||||||
|
|
|
||||||
16
.config/paperwm/metadata.json
Normal file
16
.config/paperwm/metadata.json
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"_generated": "Generated by SweetTooth, do not edit",
|
||||||
|
"description": "Tiling window manager with a twist",
|
||||||
|
"name": "PaperWM",
|
||||||
|
"settings-schema": "org.gnome.shell.extensions.paperwm",
|
||||||
|
"shell-version": [
|
||||||
|
"45",
|
||||||
|
"46",
|
||||||
|
"47",
|
||||||
|
"48"
|
||||||
|
],
|
||||||
|
"url": "https://github.com/paperwm/PaperWM",
|
||||||
|
"uuid": "paperwm@paperwm.github.com",
|
||||||
|
"version": 141,
|
||||||
|
"version-name": "48.0.2"
|
||||||
|
}
|
||||||
84
.config/paperwm/user.css
Normal file
84
.config/paperwm/user.css
Normal file
|
|
@ -0,0 +1,84 @@
|
||||||
|
/*
|
||||||
|
Users may override the default PaperWM styles to suit their preferences.
|
||||||
|
Added custom styling in this `user.css` file.
|
||||||
|
|
||||||
|
`Disable` and then `enable` PaperWM extension to apply these styles
|
||||||
|
(users do NOT need to logout / login).
|
||||||
|
|
||||||
|
DEFAULT STYLES ARE PROVIDED BELOW FOR REFERENCE:
|
||||||
|
/*
|
||||||
|
|
||||||
|
/*
|
||||||
|
.background-clear {
|
||||||
|
background-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar-transparent-background {
|
||||||
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.space-workspace-indicator {
|
||||||
|
padding: 0 10px 0 0;
|
||||||
|
background-color: transparent;
|
||||||
|
border-image: none;
|
||||||
|
background-image: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.space-focus-mode-icon {
|
||||||
|
icon-size: 16px;
|
||||||
|
padding: 0 18px 0 18px;
|
||||||
|
margin-left: 3px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.open-position-icon {
|
||||||
|
icon-size: 22px;
|
||||||
|
padding: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.focus-button-tooltip {
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.take-window-hint {
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace-icon-button {
|
||||||
|
-st-icon-style: symbolic;
|
||||||
|
border: none;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace-icon-button StIcon {
|
||||||
|
icon-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paperwm-minimap-selection {
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paperwm-clone-shade {
|
||||||
|
background-color: rgba(0, 0, 0, 0.7);
|
||||||
|
border-radius: 7px 7px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paperwm-window-position-bar-backdrop {
|
||||||
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
|
}
|
||||||
|
|
||||||
|
.paperwm-window-position-bar {
|
||||||
|
border: 0;
|
||||||
|
border-radius: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
*/
|
||||||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,2 +1,6 @@
|
||||||
.gsd-keyboard.settings-ported
|
.gsd-keyboard.settings-ported
|
||||||
lazy-lock.json
|
lazy-lock.json
|
||||||
|
git
|
||||||
|
systemd
|
||||||
|
fontconfig
|
||||||
|
btop
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue