mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-15 13:12:06 +00:00
~
This commit is contained in:
parent
178167c0ae
commit
16125f4b0b
4 changed files with 16 additions and 1 deletions
|
@ -4,5 +4,5 @@ root = true
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
indent_style = space
|
indent_style = tab
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
3
TODO
3
TODO
|
@ -32,12 +32,15 @@
|
||||||
+- [ ] Using shift instead of ctrl seems inconsistent but it appears that other applications use ctrl+alt+arrowkeys for their own purposes which IDK if i want to overwrite
|
+- [ ] Using shift instead of ctrl seems inconsistent but it appears that other applications use ctrl+alt+arrowkeys for their own purposes which IDK if i want to overwrite
|
||||||
[ ] Fix alt+tab switcher fonts and colors being fucked up
|
[ ] Fix alt+tab switcher fonts and colors being fucked up
|
||||||
[ ] Get fishline
|
[ ] Get fishline
|
||||||
|
+- [ ] i dont think fish.plugins works for this
|
||||||
[ ] Get minecraft assets to work PLEAAASEEEEE
|
[ ] Get minecraft assets to work PLEAAASEEEEE
|
||||||
[ ] Make cavestory multiplayer into a nix derivation (its a zip file, see https://discourse.nixos.org/t/what-is-your-approach-to-packaging-wine-applications-with-nix-derivations/12799)
|
[ ] Make cavestory multiplayer into a nix derivation (its a zip file, see https://discourse.nixos.org/t/what-is-your-approach-to-packaging-wine-applications-with-nix-derivations/12799)
|
||||||
[ ] MEGA TODO: get timeshift.json to work (its in /etc/timeshift/timeshift.json so i think itll need its own derivation)
|
[ ] MEGA TODO: get timeshift.json to work (its in /etc/timeshift/timeshift.json so i think itll need its own derivation)
|
||||||
[ ] soteria doesnt fucking work
|
[ ] soteria doesnt fucking work
|
||||||
[ ] make https://github.com/addy-dclxvi/openbox-theme-collections.git into a derivation????
|
[ ] make https://github.com/addy-dclxvi/openbox-theme-collections.git into a derivation????
|
||||||
+- [ ] numix-clone + vermello
|
+- [ ] numix-clone + vermello
|
||||||
|
[ ] YNFG derivations
|
||||||
|
[ ] Switch over to using tabs for indents
|
||||||
|
|
||||||
[x] Get PulseAudio sound controls on polybar to work
|
[x] Get PulseAudio sound controls on polybar to work
|
||||||
[x] Add desktop switching to windows (context menu?)
|
[x] Add desktop switching to windows (context menu?)
|
||||||
|
|
|
@ -61,6 +61,17 @@
|
||||||
shellInit = ''
|
shellInit = ''
|
||||||
set -g fish_greeting
|
set -g fish_greeting
|
||||||
'';
|
'';
|
||||||
|
plugins = [
|
||||||
|
{
|
||||||
|
name = "fishline";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "0rax";
|
||||||
|
repo = "fishline";
|
||||||
|
rev = "v3.3.0";
|
||||||
|
sha256 = "0j14nvhbz80pfkyzmwmj8x5b4pbngg9z4w04c6qrx3fip8fv70im";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
vala-language-server # Vala
|
vala-language-server # Vala
|
||||||
# games
|
# games
|
||||||
alvr # Stream VR games from your PC to your headset via Wi-Fi
|
alvr # Stream VR games from your PC to your headset via Wi-Fi
|
||||||
|
easyrpg-player # RPG Maker 2000/2003 and EasyRPG games interpreter
|
||||||
unstable.luanti # An open source voxel game engine (formerly Minetest)
|
unstable.luanti # An open source voxel game engine (formerly Minetest)
|
||||||
prismlauncher # Free, open source launcher for Minecraft
|
prismlauncher # Free, open source launcher for Minecraft
|
||||||
steam-run # Run commands in the same FHS environment that is used for Steam
|
steam-run # Run commands in the same FHS environment that is used for Steam
|
||||||
|
|
Loading…
Add table
Reference in a new issue