Merge branch 'master' of https://git.urmel.duckdns.org/Kyattsukuro/dotfiles
BIN
eggs/libreoffice/4/user/backup/HK-Urdaten.xls.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/HK-Urdaten.xlsx.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/KI Definitionen.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/bremerhaven_template.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/die_arbeiterfrage.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/flyer_digital.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/nach-mitternacht.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/protokoll01102025.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/satzung_bremen.odt.bak
Normal file
BIN
eggs/libreoffice/4/user/backup/wahlordnung-LMV.docx.bak
Normal file
65
eggs/libreoffice/4/user/basic/Standard/ConditionalShow.xba
Normal file
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="ConditionalShow" script:language="StarBasic" script:moduleType="normal">Sub ShowImageBasedOnValue(oEvent)
|
||||
|
||||
Dim oListBox As Object
|
||||
oListBox = oEvent.Source.Model
|
||||
|
||||
' Get the selected indices (array, since multi-select is possible)
|
||||
Dim sel() As Long
|
||||
sel = oListBox.SelectedItems
|
||||
|
||||
If UBound(sel) >= 0 Then
|
||||
Dim idx As Long
|
||||
idx = sel(0) ' take the first selected index
|
||||
|
||||
' Get the corresponding string
|
||||
Dim selectedValue As String
|
||||
selectedValue = oListBox.StringItemList(idx)
|
||||
|
||||
'MsgBox "Selected index: " & idx & Chr(10) & "Selected value: " & selectedValue
|
||||
' Define possible values and matching image names
|
||||
Dim values(1) As String
|
||||
Dim images(1) As String
|
||||
|
||||
values(0) = "Bremen"
|
||||
images(0) = "Shape 1"
|
||||
|
||||
values(1) = "Bremerhaven"
|
||||
images(1) = "Shape 2"
|
||||
|
||||
' Hide all images first
|
||||
Dim i As Integer
|
||||
For i = LBound(images) To UBound(images)
|
||||
Dim slide As Object
|
||||
Dim shape As Object
|
||||
Dim j As Integer
|
||||
|
||||
slide = ThisComponent.DrawPages(0) ' first slide, index starts at 0
|
||||
|
||||
For j = 0 To UBound(images)
|
||||
' Loop through shapes to find one with the name
|
||||
For Each shape In slide.Shapes
|
||||
If shape.Name = images(i) Then
|
||||
shape.Visible = False
|
||||
End If
|
||||
Next
|
||||
Next j
|
||||
|
||||
Next i
|
||||
|
||||
' Show the one that matches
|
||||
For i = LBound(values) To UBound(values)
|
||||
If selectedValue = values(i) Then
|
||||
ThisComponent.DrawPage.getByName(images(i)).Visible = True
|
||||
Exit For
|
||||
End If
|
||||
Next i
|
||||
|
||||
Else
|
||||
MsgBox "Nothing selected"
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
</script:module>
|
||||
@ -1,24 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<!--
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
* This file incorporates work covered by the following license notice:
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed
|
||||
* with this work for additional information regarding copyright
|
||||
* ownership. The ASF licenses this file to you under the Apache
|
||||
* License, Version 2.0 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
||||
-->
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****
|
||||
|
||||
Sub Main
|
||||
|
||||
End Sub</script:module>
|
||||
End Sub
|
||||
</script:module>
|
||||
@ -2,4 +2,5 @@
|
||||
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
|
||||
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false">
|
||||
<library:element library:name="Module1"/>
|
||||
</library:library>
|
||||
<library:element library:name="ConditionalShow"/>
|
||||
</library:library>
|
||||
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
|
||||
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<library:library library:name="Standard" library:link="false"/>
|
||||
</library:libraries>
|
||||
<library:library library:name="Standard" xlink:href="$(USER)/basic/Standard/script.xlb/" xlink:type="simple" library:link="false"/>
|
||||
</library:libraries>
|
||||
@ -1,2 +1,6 @@
|
||||
<<<<<<< HEAD
|
||||
DejaVu Sans Mono;DejaVu Sans Condensed;Gilroy Medium;Gilroy Bold;Gilroy Light
|
||||
=======
|
||||
DejaVu Sans Condensed;DejaVu Math TeX Gyre;DejaVu Sans Light;0xProto Nerd Font Mono;Gilroy Light
|
||||
>>>>>>> 330eb4af60cf45f20274284c1ae5b29fbda4a8dd
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@
|
||||
<vmParameters xsi:nil="true"/>
|
||||
<jreLocations xsi:nil="true"/>
|
||||
<javaInfo xsi:nil="false" vendorUpdate="2019-07-26" autoSelect="true">
|
||||
<vendor>Oracle Corporation</vendor>
|
||||
<location>file:///usr/lib/jvm/java-8-openjdk/jre</location>
|
||||
<version>1.8.0_412</version>
|
||||
<vendor>N/A</vendor>
|
||||
<location>file:///nix/store/qagnl38l96xcbx17ll0v9zswhcl1nqw6-openjdk-21.0.7+6/lib/openjdk</location>
|
||||
<version>21.0.7</version>
|
||||
<features>0</features>
|
||||
<requirements>1</requirements>
|
||||
<vendorData>660069006C0065003A002F002F002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072002F006C00690062006A0076006D002E0073006F000A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F0063006C00690065006E0074003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F007300650072007600650072003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034002F006E00610074006900760065005F0074006800720065006100640073003A002F007500730072002F006C00690062002F006A0076006D002F006A006100760061002D0038002D006F00700065006E006A0064006B002F006A00720065002F006C00690062002F0061006D006400360034000A00</vendorData>
|
||||
<vendorData>660069006C0065003A002F002F002F006E00690078002F00730074006F00720065002F007100610067006E006C00330038006C00390036007800630062007800310037006C006C003000760039007A0073007700680063006C0031006E007100770036002D006F00700065006E006A0064006B002D00320031002E0030002E0037002B0036002F006C00690062002F006F00700065006E006A0064006B002F006C00690062002F007300650072007600650072002F006C00690062006A0076006D002E0073006F000A002F006E00690078002F00730074006F00720065002F007100610067006E006C00330038006C00390036007800630062007800310037006C006C003000760039007A0073007700680063006C0031006E007100770036002D006F00700065006E006A0064006B002D00320031002E0030002E0037002B0036002F006C00690062002F006F00700065006E006A0064006B002F006C00690062002F0061006D006400360034002F0063006C00690065006E0074003A002F006E00690078002F00730074006F00720065002F007100610067006E006C00330038006C00390036007800630062007800310037006C006C003000760039007A0073007700680063006C0031006E007100770036002D006F00700065006E006A0064006B002D00320031002E0030002E0037002B0036002F006C00690062002F006F00700065006E006A0064006B002F006C00690062002F0061006D006400360034002F007300650072007600650072003A002F006E00690078002F00730074006F00720065002F007100610067006E006C00330038006C00390036007800630062007800310037006C006C003000760039007A0073007700680063006C0031006E007100770036002D006F00700065006E006A0064006B002D00320031002E0030002E0037002B0036002F006C00690062002F006F00700065006E006A0064006B002F006C00690062002F0061006D006400360034002F006E00610074006900760065005F0074006800720065006100640073003A002F006E00690078002F00730074006F00720065002F007100610067006E006C00330038006C00390036007800630062007800310037006C006C003000760039007A0073007700680063006C0031006E007100770036002D006F00700065006E006A0064006B002D00320031002E0030002E0037002B0036002F006C00690062002F006F00700065006E006A0064006B002F006C00690062002F0061006D006400360034000A00</vendorData>
|
||||
</javaInfo>
|
||||
</java>
|
||||
|
||||
BIN
eggs/libreoffice/4/user/pack/autocorr/acor_de-DE.pack
Executable file → Normal file
BIN
eggs/libreoffice/4/user/pack/basic/Standard/ConditionalShow.pack
Normal file
BIN
eggs/libreoffice/4/user/pack/basic/Standard/Module1.pack
Executable file → Normal file
BIN
eggs/libreoffice/4/user/pack/basic/Standard/script.pack
Executable file → Normal file
BIN
eggs/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack
Executable file → Normal file
@ -9,7 +9,11 @@ Healthineers
|
||||
Imutable
|
||||
Layer
|
||||
Layering
|
||||
<<<<<<< HEAD
|
||||
Pfahlbürgertum
|
||||
=======
|
||||
Quelloffen
|
||||
>>>>>>> 330eb4af60cf45f20274284c1ae5b29fbda4a8dd
|
||||
Shared
|
||||
Spezifikationsversion
|
||||
Testung
|
||||
|
||||
@ -67,12 +67,12 @@ UseNativeOpenAL=false
|
||||
UseZink=false
|
||||
WrapperCommand=
|
||||
iconKey=default
|
||||
lastLaunchTime=1753719248106
|
||||
lastTimePlayed=104
|
||||
lastLaunchTime=1760304252074
|
||||
lastTimePlayed=550
|
||||
linkedInstances=[]
|
||||
name=1.21_fabric_main
|
||||
notes=
|
||||
totalTimePlayed=84008
|
||||
totalTimePlayed=84558
|
||||
|
||||
[UI]
|
||||
mods_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\v\x80\a\0\0\0\x4\0\0\0\b\0\0\0\x64\0\0\0\a\0\0\0\x64\0\0\0\n\0\0\0\x64\0\0\0\t\0\0\0\x64\0\0\x2\xf8\0\0\0\v\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\v\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\xa0\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1)
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#Indigo properties file
|
||||
#Mon Jul 28 18:14:11 CEST 2025
|
||||
#Sun Oct 12 23:24:15 CEST 2025
|
||||
always-tesselate-blocks=auto
|
||||
ambient-occlusion-mode=hybrid
|
||||
debug-compare-lighting=auto
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||
#Mon Jul 28 18:14:12 CEST 2025
|
||||
#Sun Oct 12 23:24:16 CEST 2025
|
||||
allowUnknownShaders=false
|
||||
colorSpace=SRGB
|
||||
disableUpdateMessage=false
|
||||
|
||||
@ -10,16 +10,16 @@
|
||||
"name": "gui.xaero_entity_category_root",
|
||||
"protection": true,
|
||||
"settingOverrides": {
|
||||
"displayHeight": 0.0,
|
||||
"displayed": true,
|
||||
"displayHeight": 0.0,
|
||||
"heightBasedFade": true,
|
||||
"renderOrder": 0.0,
|
||||
"color": 13.0,
|
||||
"displayNameWhenIconFails": true,
|
||||
"entityNumber": 1000.0,
|
||||
"alwaysDisplayNametags": false,
|
||||
"dotSize": 2.0,
|
||||
"startFadingAt": 0.0,
|
||||
"dotSize": 2.0,
|
||||
"renderOverMinimapFrame": 1.0,
|
||||
"icons": 1.0,
|
||||
"names": 0.0,
|
||||
|
||||
@ -6,7 +6,7 @@ entityDistanceScaling:1.0
|
||||
entityShadows:true
|
||||
forceUnicodeFont:false
|
||||
japaneseGlyphVariants:false
|
||||
fov:0.5
|
||||
fov:0.625
|
||||
fovEffectScale:0.0
|
||||
darknessEffectScale:1.0
|
||||
glintSpeed:0.5
|
||||
@ -125,6 +125,44 @@ key_key.freecam.toggle:key.keyboard.c
|
||||
key_key.freecam.playerControl:key.keyboard.unknown
|
||||
key_key.freecam.tripodReset:key.keyboard.unknown
|
||||
key_key.freecam.configGui:key.keyboard.unknown
|
||||
key_key.jade.config:key.keyboard.keypad.0
|
||||
key_key.jade.show_overlay:key.keyboard.keypad.1
|
||||
key_key.jade.toggle_liquid:key.keyboard.keypad.2
|
||||
key_key.jade.show_recipes:key.keyboard.keypad.3
|
||||
key_key.jade.show_uses:key.keyboard.keypad.4
|
||||
key_key.jade.narrate:key.keyboard.keypad.5
|
||||
key_key.jade.show_details_alternative:key.keyboard.unknown
|
||||
key_key.jei.toggleOverlay:key.keyboard.o
|
||||
key_key.jei.focusSearch:key.keyboard.f
|
||||
key_key.jei.previousPage:key.keyboard.unknown
|
||||
key_key.jei.nextPage:key.keyboard.unknown
|
||||
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
|
||||
key_key.jei.bookmark:key.keyboard.a
|
||||
key_key.jei.showRecipe:key.keyboard.r
|
||||
key_key.jei.showRecipe2:key.mouse.left
|
||||
key_key.jei.showUses:key.keyboard.u
|
||||
key_key.jei.showUses2:key.mouse.right
|
||||
key_key.jei.transferRecipeBookmark:key.mouse.left
|
||||
key_key.jei.maxTransferRecipeBookmark:key.mouse.left
|
||||
key_key.jei.clearSearchBar:key.mouse.right
|
||||
key_key.jei.previousSearch:key.keyboard.up
|
||||
key_key.jei.nextSearch:key.keyboard.down
|
||||
key_key.jei.toggleCheatMode:key.keyboard.unknown
|
||||
key_key.jei.cheatOneItem:key.mouse.left
|
||||
key_key.jei.cheatOneItem2:key.mouse.right
|
||||
key_key.jei.cheatItemStack:key.mouse.left
|
||||
key_key.jei.cheatItemStack2:key.mouse.middle
|
||||
key_key.jei.toggleCheatModeConfigButton:key.mouse.left
|
||||
key_key.jei.toggleEditMode:key.keyboard.unknown
|
||||
key_key.jei.toggleHideIngredient:key.mouse.left
|
||||
key_key.jei.toggleWildcardHideIngredient:key.mouse.right
|
||||
key_key.jei.recipeBack:key.keyboard.backspace
|
||||
key_key.jei.previousRecipePage:key.keyboard.page.up
|
||||
key_key.jei.nextRecipePage:key.keyboard.page.down
|
||||
key_key.jei.previousCategory:key.keyboard.page.up
|
||||
key_key.jei.nextCategory:key.keyboard.page.down
|
||||
key_key.jei.closeRecipeGui:key.keyboard.escape
|
||||
key_key.jei.copy.recipe.id:key.keyboard.unknown
|
||||
key_key.modmenu.open_menu:key.keyboard.unknown
|
||||
key_key.push_to_talk:key.keyboard.p
|
||||
key_key.whisper:key.keyboard.unknown
|
||||
|
||||
@ -1 +1 @@
|
||||
{"stats":{"minecraft:used":{"minecraft:oak_log":16,"turingcomplete:omni_directional_redstone_bridge_block":43,"minecraft:sticky_piston":23,"turingcomplete:logic_base_plate_block":3,"minecraft:piston":32,"minecraft:lever":158,"minecraft:spruce_button":2,"minecraft:red_wool":210,"minecraft:green_wool":117,"minecraft:spruce_slab":3,"minecraft:oak_sign":57,"turingcomplete:or_gate_block":3,"turingcomplete:full_adder":33,"minecraft:grass_block":59,"minecraft:stone_button":13,"minecraft:oak_button":36,"minecraft:redstone":2096,"minecraft:lime_wool":2,"turingcomplete:xnor_gate_block":9,"minecraft:blue_wool":173,"turingcomplete:and_gate_block":94,"minecraft:redstone_block":7,"turingcomplete:jk_latch_block":31,"minecraft:pink_wool":45,"minecraft:barrel":4,"minecraft:deepslate_bricks":1237,"minecraft:yellow_wool":89,"minecraft:birch_button":1,"turingcomplete:3and_gate_block":25,"minecraft:repeater":354,"turingcomplete:nand_gate_block":32,"turingcomplete:xor_gate_block":58,"turingcomplete:t_latch_block":36,"turingcomplete:switch_gate_block":123,"minecraft:dirt":14,"minecraft:redstone_lamp":58,"minecraft:sand":38,"minecraft:target":76,"minecraft:comparator":96,"minecraft:oak_slab":11,"turingcomplete:not_gate_block":149,"minecraft:jungle_button":2,"minecraft:crafting_table":1,"minecraft:furnace":3,"minecraft:light_blue_wool":54,"minecraft:deepslate_brick_slab":24,"minecraft:orange_wool":3,"turingcomplete:half_adder":8,"minecraft:cyan_wool":642,"minecraft:observer":7,"turingcomplete:bi_directional_redstone_bridge_block":31,"minecraft:waxed_copper_bulb":1,"minecraft:purple_wool":431,"turingcomplete:sr_latch_block":72,"minecraft:glass":33,"turingcomplete:memory_cell_gate":81,"minecraft:redstone_torch":531},"minecraft:custom":{"minecraft:time_since_rest":1449201,"minecraft:interact_with_furnace":2,"minecraft:sprint_one_cm":37635,"minecraft:walk_one_cm":545383,"minecraft:damage_dealt":20,"minecraft:talked_to_villager":2,"minecraft:interact_with_crafting_table":2,"minecraft:fly_one_cm":3070389,"minecraft:open_barrel":11,"minecraft:crouch_one_cm":12450,"minecraft:play_time":1449201,"minecraft:sneak_time":35751,"minecraft:jump":1590,"minecraft:leave_game":18,"minecraft:time_since_death":1449201,"minecraft:total_world_time":1540811},"minecraft:picked_up":{"turingcomplete:not_gate_block":8,"turingcomplete:switch_gate_block":10,"minecraft:repeater":34,"turingcomplete:omni_directional_redstone_bridge_block":2,"minecraft:birch_button":1,"minecraft:sand":3,"turingcomplete:sr_latch_block":7,"minecraft:jungle_button":2,"turingcomplete:3and_gate_block":3,"turingcomplete:t_latch_block":2,"minecraft:redstone":3344,"turingcomplete:jk_latch_block":1,"turingcomplete:full_adder":3,"minecraft:oak_sign":8,"turingcomplete:xor_gate_block":1,"minecraft:lever":27,"minecraft:comparator":5,"turingcomplete:and_gate_block":12,"minecraft:redstone_torch":48,"minecraft:oak_button":12}},"DataVersion":3953}
|
||||
{"stats":{"minecraft:custom":{"minecraft:time_since_rest":1450164,"minecraft:interact_with_furnace":2,"minecraft:sprint_one_cm":37635,"minecraft:walk_one_cm":546541,"minecraft:damage_dealt":20,"minecraft:talked_to_villager":2,"minecraft:interact_with_crafting_table":2,"minecraft:fly_one_cm":3094755,"minecraft:open_barrel":11,"minecraft:crouch_one_cm":12450,"minecraft:play_time":1450164,"minecraft:sneak_time":35783,"minecraft:jump":1593,"minecraft:leave_game":19,"minecraft:time_since_death":1450164,"minecraft:total_world_time":1541779},"minecraft:picked_up":{"turingcomplete:not_gate_block":8,"turingcomplete:switch_gate_block":10,"minecraft:repeater":34,"turingcomplete:omni_directional_redstone_bridge_block":2,"minecraft:birch_button":1,"minecraft:sand":3,"turingcomplete:sr_latch_block":7,"minecraft:jungle_button":2,"turingcomplete:3and_gate_block":3,"turingcomplete:t_latch_block":2,"minecraft:redstone":3344,"turingcomplete:jk_latch_block":1,"turingcomplete:full_adder":3,"minecraft:oak_sign":8,"turingcomplete:xor_gate_block":1,"minecraft:lever":27,"minecraft:comparator":5,"turingcomplete:and_gate_block":12,"minecraft:redstone_torch":48,"minecraft:oak_button":12},"minecraft:used":{"minecraft:oak_log":16,"turingcomplete:omni_directional_redstone_bridge_block":43,"minecraft:sticky_piston":23,"turingcomplete:logic_base_plate_block":3,"minecraft:piston":32,"minecraft:lever":158,"minecraft:spruce_button":2,"minecraft:red_wool":210,"minecraft:green_wool":117,"minecraft:spruce_slab":3,"minecraft:oak_sign":57,"turingcomplete:or_gate_block":3,"turingcomplete:full_adder":33,"minecraft:grass_block":59,"minecraft:stone_button":13,"minecraft:lime_wool":2,"minecraft:redstone":2096,"minecraft:oak_button":36,"turingcomplete:xnor_gate_block":9,"minecraft:blue_wool":173,"turingcomplete:and_gate_block":94,"minecraft:redstone_block":7,"turingcomplete:jk_latch_block":31,"minecraft:pink_wool":45,"minecraft:barrel":4,"minecraft:deepslate_bricks":1237,"minecraft:yellow_wool":89,"minecraft:birch_button":1,"turingcomplete:3and_gate_block":25,"minecraft:repeater":354,"turingcomplete:nand_gate_block":32,"turingcomplete:xor_gate_block":58,"turingcomplete:t_latch_block":36,"turingcomplete:switch_gate_block":123,"minecraft:dirt":14,"minecraft:redstone_lamp":58,"minecraft:sand":38,"minecraft:target":76,"minecraft:comparator":96,"minecraft:oak_slab":11,"turingcomplete:not_gate_block":149,"minecraft:jungle_button":2,"minecraft:crafting_table":1,"minecraft:furnace":3,"minecraft:light_blue_wool":54,"minecraft:deepslate_brick_slab":24,"minecraft:orange_wool":3,"turingcomplete:half_adder":8,"minecraft:cyan_wool":642,"minecraft:observer":7,"turingcomplete:bi_directional_redstone_bridge_block":31,"minecraft:waxed_copper_bulb":1,"minecraft:purple_wool":431,"turingcomplete:sr_latch_block":72,"minecraft:glass":33,"turingcomplete:memory_cell_gate":81,"minecraft:redstone_torch":531}},"DataVersion":3953}
|
||||
@ -1 +1 @@
|
||||
[{"name":"Kyattsukuro","uuid":"83aca42b-b499-4107-a00f-b8664bf4e34a","expiresOn":"2025-08-28 18:14:30 +0200"}]
|
||||
[{"name":"Kyattsukuro","uuid":"83aca42b-b499-4107-a00f-b8664bf4e34a","expiresOn":"2025-11-12 23:32:32 +0100"}]
|
||||
@ -1,6 +1,6 @@
|
||||
[General]
|
||||
bookmarks=/home/someone
|
||||
lastDisplay=0
|
||||
maximizedWindow=true
|
||||
maximizedWindow=false
|
||||
savedPaths=/home/someone, /home/someone/Apps, /home/someone/Builds, /home/someone/Code, /home/someone/Desktop, /home/someone/Documents, /home/someone/Downloads, /home/someone/Music, /home/someone/nas
|
||||
windowGeometry=@Rect(12 12 1831 1416)
|
||||
|
||||
@ -8,3 +8,4 @@ file:///mnt/SDSSDP25
|
||||
file:///mnt/DT01ACA3
|
||||
file:///mnt/DT01ACA1
|
||||
smb://172.24.2.6/someone/
|
||||
file:///home/someone/Nextcloud/Bilder/ScreenshotsPc
|
||||
|
||||
BIN
eggs/theme/icons_lc/hicolor/128x128/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
eggs/theme/icons_lc/hicolor/16x16/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
eggs/theme/icons_lc/hicolor/24x24/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
eggs/theme/icons_lc/hicolor/256x256/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 126 KiB |
BIN
eggs/theme/icons_lc/hicolor/32x32/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
eggs/theme/icons_lc/hicolor/64x64/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
eggs/theme/icons_lc/hicolor/96x96/apps/steam_icon_236850.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
@ -1,10 +1,11 @@
|
||||
; thunar GtkAccelMap rc-file -*- scheme -*-
|
||||
; Thunar GtkAccelMap rc-file -*- scheme -*-
|
||||
; this file is an automated accelerator map dump
|
||||
;
|
||||
; (gtk_accel_path "<Actions>/ThunarDetailsView/expandable-folders" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/fd28bef65dff571b9db624e377c22512" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-type" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarStatusBar/toggle-last-modified" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/4ceb0f8ea4a7a532195c85d887ca7ccd" "")
|
||||
; (gtk_accel_path "<Actions>/Thunarwindow/menu" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarActionManager/cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-size" "")
|
||||
@ -30,8 +31,8 @@
|
||||
; (gtk_accel_path "<Actions>/ThunarActionManager/restore" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/open-location-alt" "<Alt>d")
|
||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/7b974f04fe696fe4ab4967eebde3d256" "")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-out-alt" "<Primary>KP_Subtract")
|
||||
; (gtk_accel_path "<Actions>/ThunarStandardView/select-by-pattern" "<Primary>s")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-out-alt" "<Primary>KP_Subtract")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/open-file-menu" "F10")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/contents" "F1")
|
||||
; (gtk_accel_path "<Actions>/ThunarWindow/show-highlight" "")
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
<property name="last-window-maximized" type="bool" value="true"/>
|
||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_38_PERCENT"/>
|
||||
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_CREATED,THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_GROUP,THUNAR_COLUMN_MIME_TYPE,THUNAR_COLUMN_NAME,THUNAR_COLUMN_OWNER,THUNAR_COLUMN_PERMISSIONS,THUNAR_COLUMN_SIZE"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="159,159,159,159,92,1142,74,188,514,214,118,90,126,156"/>
|
||||
<property name="last-separator-position" type="int" value="147"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="159,159,159,159,92,1142,74,580,1799,79,118,81,126,156"/>
|
||||
<property name="last-separator-position" type="int" value="289"/>
|
||||
<property name="last-show-hidden" type="bool" value="true"/>
|
||||
<property name="misc-single-click" type="bool" value="false"/>
|
||||
<property name="default-view" type="string" value="ThunarDetailsView"/>
|
||||
@ -37,8 +37,8 @@
|
||||
<property name="last-focused-tab-left" type="int" value="0"/>
|
||||
<property name="last-focused-tab-right" type="int" value="0"/>
|
||||
<property name="misc-confirm-close-multiple-tabs" type="bool" value="false"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_DATE_MODIFIED"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_DESCENDING"/>
|
||||
<property name="misc-file-size-binary" type="bool" value="true"/>
|
||||
<property name="last-toolbar-items" type="string" value="menu:0,back:1,open-parent:1,forward:1,reload:1,open-home:1,undo:0,redo:0,zoom-in:0,zoom-out:0,zoom-reset:0,view-as-icons:0,view-as-detailed-list:0,view-as-compact-list:0,toggle-split-view:0,location-bar:1,search:1,uca-action-1742057602097788-1:0,uca-action-1742077667062723-1:0,new-tab:0,new-window:0,view-switcher:0"/>
|
||||
<property name="last-renamer-dialog-maximized" type="bool" value="true"/>
|
||||
|
||||
@ -16,5 +16,5 @@ playlistSize=@Size(-1 -1)
|
||||
status-bar-visible=false
|
||||
|
||||
[RecentsMRL]
|
||||
list=file:///home/someone/Downloads/KPop%20Demon%20Hunters-4796162205554688.mp4, file:///home/someone/Documents/handbrake/in/1.Crossing%20Japan%20With%20No%20Map.mp4, file:///home/someone/Documents/handbrake/out/1.Crossing%20Japan%20With%20No%20Map.mp4, file:///home/someone/Documents/socialist_lyrics/Abschied%20von%20Spanien%20-%20Ernst%20Busch%20%5B%E2%AD%90%20LYRICS%20GER%E2%A7%B8ENG%5D%20%5BSpanish%20Civil%20War%5D.mp3, file:///home/someone/Documents/socialist_lyrics/Abschied%20von%20Spanien%2C%20Flamingos%20im%20Ebrodelta%20und%20Gasflaschenwechsel.%20%C3%9Cberwintern%20in%20Spanien%202023..mp3, file:///home/someone/Downloads/4.19%20Wichtige%20Anwendungsprotokolle.mp4, file:///home/someone/responcive_review_h264.mp4, file:///home/someone/Downloads/Legefilm-Auswirkung-von-Synonymen-und-Umschreibungen.mp4, file:///home/someone/Videos/Screencasts/Screencast_20241010_182543.webm, file:///home/someone/Nextcloud/Office/Schule/Kun/Vom%20Anfang%20bis%20heute%20-%20Die%20Geschichte%20der%20Fotografie%20Videos%20by%20Arne.mp4
|
||||
times=623432, 0, 784589, 30309, 0, 146400, 0, 168570, 0, 0
|
||||
list=file:///home/someone/.cache/.fr-55BXD3/video/segments/segment-1.mp4, file:///home/someone/.cache/.fr-Z6IBE3/video/segments/segment-3.mp4, file:///home/someone/.cache/.fr-9YTGE3/video/segments/segment-7.mp4, file:///home/someone/Downloads/KPop%20Demon%20Hunters-4796162205554688.mp4, file:///home/someone/Documents/handbrake/in/1.Crossing%20Japan%20With%20No%20Map.mp4, file:///home/someone/Documents/handbrake/out/1.Crossing%20Japan%20With%20No%20Map.mp4, file:///home/someone/Documents/socialist_lyrics/Abschied%20von%20Spanien%20-%20Ernst%20Busch%20%5B%E2%AD%90%20LYRICS%20GER%E2%A7%B8ENG%5D%20%5BSpanish%20Civil%20War%5D.mp3, file:///home/someone/Documents/socialist_lyrics/Abschied%20von%20Spanien%2C%20Flamingos%20im%20Ebrodelta%20und%20Gasflaschenwechsel.%20%C3%9Cberwintern%20in%20Spanien%202023..mp3, file:///home/someone/Downloads/4.19%20Wichtige%20Anwendungsprotokolle.mp4, file:///home/someone/responcive_review_h264.mp4, file:///home/someone/Downloads/Legefilm-Auswirkung-von-Synonymen-und-Umschreibungen.mp4, file:///home/someone/Videos/Screencasts/Screencast_20241010_182543.webm, file:///home/someone/Nextcloud/Office/Schule/Kun/Vom%20Anfang%20bis%20heute%20-%20Die%20Geschichte%20der%20Fotografie%20Videos%20by%20Arne.mp4
|
||||
times=0, 0, 0, 623432, 0, 784589, 30309, 0, 146400, 0, 168570, 0, 0
|
||||
|
||||
108
root-conf/nixos/flake.lock
generated
@ -20,11 +20,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745357003,
|
||||
"narHash": "sha256-jYwzQkv1r7HN/4qrAuKp+NR4YYNp2xDrOX5O9YVqkWo=",
|
||||
"lastModified": 1759499898,
|
||||
"narHash": "sha256-UNzYHLWfkSzLHDep5Ckb5tXc0fdxwPIrT+MY4kpQttM=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "aquamarine",
|
||||
"rev": "a19cf76ee1a15c1c12083fa372747ce46387289f",
|
||||
"rev": "655e067f96fd44b3f5685e17f566b0e4d535d798",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -36,11 +36,11 @@
|
||||
"flake-compat": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1696426674,
|
||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
||||
"lastModified": 1747046372,
|
||||
"narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
|
||||
"owner": "edolstra",
|
||||
"repo": "flake-compat",
|
||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
||||
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -78,11 +78,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1749135094,
|
||||
"narHash": "sha256-Pw5xFy2gGNE2qLk29S/OFZlTYwtkDNqkGBOgw+K8jvU=",
|
||||
"lastModified": 1758463745,
|
||||
"narHash": "sha256-uhzsV0Q0I9j2y/rfweWeGif5AWe0MGrgZ/3TjpDYdGA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "b949584034d25bdc802de28051192b622a058142",
|
||||
"rev": "3b955f5f0a942f9f60cdc9cacb7844335d0f21c3",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -108,11 +108,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745948457,
|
||||
"narHash": "sha256-lzTV10FJTCGNtMdgW5YAhCAqezeAzKOd/97HbQK8GTU=",
|
||||
"lastModified": 1753964049,
|
||||
"narHash": "sha256-lIqabfBY7z/OANxHoPeIrDJrFyYy9jAM4GQLzZ2feCM=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprcursor",
|
||||
"rev": "ac903e80b33ba6a88df83d02232483d99f327573",
|
||||
"rev": "44e91d467bdad8dcf8bbd2ac7cf49972540980a5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -137,11 +137,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745015490,
|
||||
"narHash": "sha256-apEJ9zoSzmslhJ2vOKFcXTMZLUFYzh1ghfB6Rbw3Low=",
|
||||
"lastModified": 1759490292,
|
||||
"narHash": "sha256-T6iWzDOXp8Wv0KQOCTHpBcmAOdHJ6zc/l9xaztW6Ivc=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprgraphics",
|
||||
"rev": "60754910946b4e2dc1377b967b7156cb989c5873",
|
||||
"rev": "9431db625cd9bb66ac55525479dce694101d6d7a",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -166,11 +166,11 @@
|
||||
"xdph": "xdph"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1747610850,
|
||||
"narHash": "sha256-b41pc9J8b9fxRFHBQRKoTXZHpAsKW5eJbNsTMris2Mo=",
|
||||
"lastModified": 1760336853,
|
||||
"narHash": "sha256-WypDi304H7oJQ0b4Efrj5Xwm21lUsahtP/CrnJUqkqM=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "Hyprland",
|
||||
"rev": "eb3b38d40baca5c05ddbc1507b3d3f02a0ccb164",
|
||||
"rev": "6582f42db85bd6e7216d6e77c839f03933974da4",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -196,11 +196,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1747595918,
|
||||
"narHash": "sha256-5wjvmFtk85uBJLnrKZbfrgo9OTTQlFP18ZNgfBwFsz0=",
|
||||
"lastModified": 1760355871,
|
||||
"narHash": "sha256-ro1k2IVrCKatVa8F2K1+0W4mnnwM/8ppN0zRtjtavhQ=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprland-plugins",
|
||||
"rev": "4dea1029e837ae642979ab509eb2eddc959470d0",
|
||||
"rev": "25a5d1327e61916d2a012db4bf184a81f70fe8c6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -221,11 +221,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1743714874,
|
||||
"narHash": "sha256-yt8F7NhMFCFHUHy/lNjH/pjZyIDFNk52Q4tivQ31WFo=",
|
||||
"lastModified": 1749046714,
|
||||
"narHash": "sha256-kymV5FMnddYGI+UjwIw8ceDjdeg7ToDVjbHCvUlhn14=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprland-protocols",
|
||||
"rev": "3a5c2bda1c1a4e55cc1330c782547695a93f05b2",
|
||||
"rev": "613878cb6f459c5e323aaafe1e6f388ac8a36330",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -253,11 +253,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1737634706,
|
||||
"narHash": "sha256-nGCibkfsXz7ARx5R+SnisRtMq21IQIhazp6viBU8I/A=",
|
||||
"lastModified": 1749154592,
|
||||
"narHash": "sha256-DO7z5CeT/ddSGDEnK9mAXm1qlGL47L3VAHLlLXoCjhE=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprland-qt-support",
|
||||
"rev": "8810df502cdee755993cb803eba7b23f189db795",
|
||||
"rev": "4c8053c3c888138a30c3a6c45c2e45f5484f2074",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -289,11 +289,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745951494,
|
||||
"narHash": "sha256-2dModE32doiyQMmd6EDAQeZnz+5LOs6KXyE0qX76WIg=",
|
||||
"lastModified": 1759080228,
|
||||
"narHash": "sha256-RgDoAja0T1hnF0pTc56xPfLfFOO8Utol2iITwYbUhTk=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprland-qtutils",
|
||||
"rev": "4be1d324faf8d6e82c2be9f8510d299984dfdd2e",
|
||||
"rev": "629b15c19fa4082e4ce6be09fdb89e8c3312aed7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -318,11 +318,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1746655412,
|
||||
"narHash": "sha256-kVQ0bHVtX6baYxRWWIh4u3LNJZb9Zcm2xBeDPOGz5BY=",
|
||||
"lastModified": 1758927902,
|
||||
"narHash": "sha256-LZgMds7M94+vuMql2bERQ6LiFFdhgsEFezE4Vn+Ys3A=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprlang",
|
||||
"rev": "557241780c179cf7ef224df392f8e67dab6cef83",
|
||||
"rev": "4dafa28d4f79877d67a7d1a654cddccf8ebf15da",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -343,11 +343,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1746635225,
|
||||
"narHash": "sha256-W9G9bb0zRYDBRseHbVez0J8qVpD5QbizX67H/vsudhM=",
|
||||
"lastModified": 1759619523,
|
||||
"narHash": "sha256-r1ed7AR2ZEb2U8gy321/Xcp1ho2tzn+gG1te/Wxsj1A=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprutils",
|
||||
"rev": "674ea57373f08b7609ce93baff131117a0dfe70d",
|
||||
"rev": "3df7bde01efb3a3e8e678d1155f2aa3f19e177ef",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -368,11 +368,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1739870480,
|
||||
"narHash": "sha256-SiDN5BGxa/1hAsqhgJsS03C3t2QrLgBT8u+ENJ0Qzwc=",
|
||||
"lastModified": 1755184602,
|
||||
"narHash": "sha256-RCBQN8xuADB0LEgaKbfRqwm6CdyopE1xIEhNc67FAbw=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "hyprwayland-scanner",
|
||||
"rev": "206367a08dc5ac4ba7ad31bdca391d098082e64b",
|
||||
"rev": "b3b0f1f40ae09d4447c20608e5a4faf8bf3c492d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -383,11 +383,11 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1747327360,
|
||||
"narHash": "sha256-LSmTbiq/nqZR9B2t4MRnWG7cb0KVNU70dB7RT4+wYK4=",
|
||||
"lastModified": 1759381078,
|
||||
"narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e06158e58f3adee28b139e9c2bcfcc41f8625b46",
|
||||
"rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -399,11 +399,11 @@
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1749086602,
|
||||
"narHash": "sha256-DJcgJMekoxVesl9kKjfLPix2Nbr42i7cpEHJiTnBUwU=",
|
||||
"lastModified": 1760139962,
|
||||
"narHash": "sha256-4xggC56Rub3WInz5eD7EZWXuLXpNvJiUPahGtMkwtuc=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "4792576cb003c994bd7cc1edada3129def20b27d",
|
||||
"rev": "7e297ddff44a3cc93673bb38d0374df8d0ad73e4",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -415,11 +415,11 @@
|
||||
},
|
||||
"pkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1747542820,
|
||||
"narHash": "sha256-GaOZntlJ6gPPbbkTLjbd8BMWaDYafhuuYRNrxCGnPJw=",
|
||||
"lastModified": 1760038930,
|
||||
"narHash": "sha256-Oncbh0UmHjSlxO7ErQDM3KM0A5/Znfofj2BSzlHLeVw=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "292fa7d4f6519c074f0a50394dbbe69859bb6043",
|
||||
"rev": "0b4defa2584313f3b781240b29d61f6f9f7e0df3",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -439,11 +439,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1747372754,
|
||||
"narHash": "sha256-2Y53NGIX2vxfie1rOW0Qb86vjRZ7ngizoo+bnXU9D9k=",
|
||||
"lastModified": 1758108966,
|
||||
"narHash": "sha256-ytw7ROXaWZ7OfwHrQ9xvjpUWeGVm86pwnEd1QhzawIo=",
|
||||
"owner": "cachix",
|
||||
"repo": "git-hooks.nix",
|
||||
"rev": "80479b6ec16fefd9c1db3ea13aeb038c60530f46",
|
||||
"rev": "54df955a695a84cd47d4a43e08e1feaf90b1fd9b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -504,11 +504,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1745871725,
|
||||
"narHash": "sha256-M24SNc2flblWGXFkGQfqSlEOzAGZnMc9QG3GH4K/KbE=",
|
||||
"lastModified": 1755354946,
|
||||
"narHash": "sha256-zdov5f/GcoLQc9qYIS1dUTqtJMeDqmBmo59PAxze6e4=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "xdg-desktop-portal-hyprland",
|
||||
"rev": "76bbf1a6b1378e4ab5230bad00ad04bc287c969e",
|
||||
"rev": "a10726d6a8d0ef1a0c645378f983b6278c42eaa0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
21
use_nix.sh
@ -2,7 +2,7 @@
|
||||
set -e
|
||||
|
||||
# use_nix.sh - Script to update NixOS configuration
|
||||
# Usage: use_nix.sh [--rebuild] [--first-run]
|
||||
# Usage: use_nix.sh [--rebuild] [--upgrade] [--re-flake]
|
||||
|
||||
function check_root() {
|
||||
if [[ $EUID -ne 0 ]]; then
|
||||
@ -12,19 +12,22 @@ function check_root() {
|
||||
}
|
||||
|
||||
function show_usage() {
|
||||
echo "Usage: $0 [--rebuild] [--first-run]"
|
||||
echo "Usage: $0 [--rebuild] [--upgrade] [--re-flake]"
|
||||
echo " --rebuild Automatically run nixos-rebuild after copying files"
|
||||
echo " --first-run Indicate this is the first system configuration"
|
||||
echo " --upgrade Upgrade installed packages to match flake.lock"
|
||||
echo " --re-flake Delete the flake.lock, forcing to fetch the latest in-branch commits"
|
||||
}
|
||||
|
||||
AUTO_REBUILD=0
|
||||
FIRST_RUN=0
|
||||
UPGRADE=0
|
||||
RE_FLAKE=0
|
||||
|
||||
# Parse arguments
|
||||
for arg in "$@"; do
|
||||
case $arg in
|
||||
--rebuild) AUTO_REBUILD=1 ;;
|
||||
--first-run) FIRST_RUN=1 ;;
|
||||
--upgrade) UPGRADE=1 ;;
|
||||
--re-flake) RE_FLAKE=1 ;;
|
||||
--help|-h) show_usage; exit 0 ;;
|
||||
*) echo "Unknown option: $arg"; show_usage; exit 1 ;;
|
||||
esac
|
||||
@ -53,10 +56,16 @@ echo "Copying files to /etc/nixos/"
|
||||
cp -r root-conf/nixos/* /etc/nixos/
|
||||
ls -l /etc/nixos/
|
||||
|
||||
if [[ $RE_FLAKE -eq 1 ]]; then
|
||||
echo "Deleting flake.lock to update in given channel"
|
||||
rm /etc/nixos/flake.lock 2>/dev/null || true
|
||||
fi
|
||||
|
||||
|
||||
# Rebuild if requested
|
||||
if [[ $AUTO_REBUILD -eq 1 ]]; then
|
||||
echo "Running nixos-rebuild switch..."
|
||||
if [[ $FIRST_RUN -eq 1 ]]; then
|
||||
if [[ $UPGRADE -eq 1 ]]; then
|
||||
echo "First run: running nixos-rebuild with --upgrade"
|
||||
nixos-rebuild switch --upgrade
|
||||
else
|
||||
|
||||