mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-02-02 06:17:34 +00:00
No swears. xD
This commit is contained in:
parent
e255c7fd47
commit
8448ee3479
2 changed files with 6 additions and 3 deletions
|
@ -42,7 +42,10 @@ namespace ShiftOS.WinForms.Applications
|
|||
public void PopulateDesktops()
|
||||
{
|
||||
lbdesktops.Items.Clear();
|
||||
lbdesktops.Items.Add("ShiftOS Desktop");
|
||||
foreach(var desk in Desktop.GetAllDesktops())
|
||||
{
|
||||
lbdesktops.Items.Add(desk.DesktopName);
|
||||
}
|
||||
}
|
||||
|
||||
public void PopulateLaunchers()
|
||||
|
|
|
@ -232,7 +232,7 @@ namespace ShiftOS.Engine
|
|||
#if DEVEL
|
||||
internal class Rock : Exception
|
||||
{
|
||||
internal Rock() : base("Someone threw a motherfucking rock at the window, and the Terminal fucking shattered.")
|
||||
internal Rock() : base("Someone threw a rock at the window, and the Terminal shattered.")
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -244,7 +244,7 @@ namespace ShiftOS.Engine
|
|||
[Command("rock", description = "A little surprise for unstable builds...")]
|
||||
public static bool ThrowAFuckingRock()
|
||||
{
|
||||
Infobox.Show("Fuck.", new Rock().Message);
|
||||
Infobox.Show("He who lives in a glass house shouldn't throw stones...", new Rock().Message);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue