Compare commits

...

3 commits

Author SHA1 Message Date
e268ea5ae0 Switch to librewolf 2025-04-02 12:32:19 +02:00
2c3db6f801 OpenRGB update 2025-04-02 12:31:52 +02:00
80cc030e37 Fix number parsing in t script 2025-04-02 12:31:23 +02:00
7 changed files with 559 additions and 8 deletions

View file

@ -194,7 +194,7 @@ time_invoice () {
fi
echo "===="
echo "Please input amount to invoice"
echo "Please input amount to invoice (rate is $HOURLY_RATE)"
read -r -p "Amount in used currency ($CURRENCY_SYMBOL): " AMOUNT
echo "Please input a directory name for this invoice"
@ -220,14 +220,14 @@ time_invoice () {
fi
unset HOURS
until [[ $HOURS == +([0-9]) ]] ; do
until [[ $HOURS == +([0-9\.]) ]] ; do
read -r -p "Enter number of hours for this entry ($ENTRY_NAME): " HOURS
done
INVOICE_ITEMS="$INVOICE_ITEMS \\\\invoiceitem{$ENTRY_NAME}{$HOURS}{$HOURLY_RATE}{}\n"
done
else
unset HOURS
until [[ $HOURS == +([0-9]) ]] ; do
until [[ $HOURS == +([0-9\.]) ]] ; do
read -r -p "Enter number of hours for this invoice: " HOURS
done
INVOICE_ITEMS="$INVOICE_ITEMS \\\\invoiceitem{Development work (hourly)}{$HOURS}{$HOURLY_RATE}{}\n"

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@ set $term alacritty
set $menu "ulauncher-toggle"
set $filemanager nautilus
set $processviewer $term -e htop
set $browser firefox
set $browser librewolf
# start a terminal
bindsym $mod+Return exec $term

View file

@ -1,4 +1,5 @@
# Assign windows to workspaces
assign [app_id="librewolf"] $browser_workspace
assign [app_id="firefox"] $browser_workspace
assign [class="Hexchat"] $chat_workspace
assign [class="Slack"] $chat_workspace
@ -16,6 +17,7 @@ assign [instance="vim"] $editor_workspace
assign [instance="download"] $ongoing_operations
assign [class="steam"] $ongoing_operations
assign [class="steam_app_*"] $ongoing_operations
assign [app_id="gamescope"] $ongoing_operations
assign [class="Godot"] $ide_workspace
assign [class="FreeTube"] $music_workspace

View file

@ -9,4 +9,5 @@ for_window [window_role="About"] floating enable
for_window [app_id="ulauncher"] border none
for_window [app_id="wofi"] border none
for_window [title="Firefox — Sharing Indicator"] floating enable
for_window [title="LibreWolf — Sharing Indicator"] floating enable
for_window [app_id="tridactyl_editor"] floating enable

View file

@ -1,3 +1,4 @@
for_window [title="Steam Big Picture Mode"] inhibit_idle fullscreen
for_window [app_id="firefox"] inhibit_idle fullscreen
for_window [app_id="librewolf"] inhibit_idle fullscreen
for_window [class="steam_app_*"] inhibit_idle fullscreen