Compare commits
3 commits
5c2727f4e4
...
e268ea5ae0
Author | SHA1 | Date | |
---|---|---|---|
e268ea5ae0 | |||
2c3db6f801 | |||
80cc030e37 |
7 changed files with 559 additions and 8 deletions
symlinks
bin
config
|
@ -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
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue